forked from OpenShelter/Tyro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTyro.podspec
More file actions
17 lines (16 loc) · 713 Bytes
/
Tyro.podspec
File metadata and controls
17 lines (16 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "Tyro"
s.version = "0.1.0"
s.summary = "Functional JSON parsing and encoding."
s.homepage = "https://github.com/OpenShelter/Tyro"
s.license = { :type => "BSD" }
s.authors = { "CodaFi" => "devteam.codafi@gmail.com", "pthariensflame" => "alexanderaltman@me.com", "mpurland" => "m.purland@gmail.com" }
s.requires_arc = true
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.1"
s.watchos.deployment_target = "2.1"
s.source = { :git => "https://github.com/OpenShelter/Tyro.git", :tag => "v#{s.version}", :submodules => true }
s.source_files = "Tyro/*.swift"
s.dependency "Swiftz"
end