-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cereal.podspec
27 lines (21 loc) · 959 Bytes
/
Cereal.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = "Cereal"
s.version = "4.0.0"
s.summary = "Object and data serialization in Swift"
s.description = <<-DESC
Cereal is essentially NSCoding for Swift. Objects can be encoded and decoded
into a format that can be written to disk, user defaults, property lists, or
transferred to other devices through frameworks like WatchConnectivity.
DESC
s.license = "MIT"
s.homepage = "https://github.com/Weebly/Cereal.git"
s.author = { "ketzusaka" => "james@weebly.com" }
s.social_media_url = "http://twitter.com/ketzusaka"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
#s.tvos.deployment_target = "1.0"
s.source = { :git => "https://github.com/Weebly/Cereal.git", :tag => "v4.0.0" }
s.requires_arc = true
s.source_files = "Cereal/*.swift"
end