forked from endocrimes/Jay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJay.podspec
More file actions
24 lines (18 loc) · 844 Bytes
/
Jay.podspec
File metadata and controls
24 lines (18 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "Jay"
s.version = "0.3.0"
s.summary = "Pure-Swift JSON parser & formatter. Linux & OS X ready"
s.description = <<-DESC
Pure-Swift JSON parser & formatter. Linux & OS X ready. Replacement for NSJSONSerialization.
DESC
s.homepage = "https://github.com/czechboy0/Jay"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Honza Dvorsky" => "https://honzadvorsky.com" }
s.social_media_url = "http://twitter.com/czechboy0"
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/czechboy0/Jay.git", :tag => "#{s.version}" }
s.source_files = "Sources/Jay/*.swift"
end