-
Notifications
You must be signed in to change notification settings - Fork 6
/
Sukari.podspec
22 lines (22 loc) · 976 Bytes
/
Sukari.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Sukari"
s.version = "0.2.1"
s.summary = "Elegant Syntactic Sugar For Swift"
s.description = <<-DESC
Sukari 🍯 is a thin light weight framweork that provides you with Elegant Syntactic Sugar For Swift which will:
1.clean up your codebase and make it easier to read 📖
2.Easily Intialize objects 🛠
3.Throw away Guard Statements with Unwrap 🎫
DESC
s.homepage = "https://github.com/xrisyz/Sukari"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Chris Karani" => "chrisbkarani@gmail.com" }
s.social_media_url = "https://twitter.com/cbkarani"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/xrisyz/Sukari.git", :tag => s.version }
s.source_files = "Sources/*.swift"
s.frameworks = "Foundation", "CoreGraphics"
end