forked from JensRavens/Interstellar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterstellar.podspec
More file actions
26 lines (22 loc) · 829 Bytes
/
Interstellar.podspec
File metadata and controls
26 lines (22 loc) · 829 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
25
26
Pod::Spec.new do |s|
s.name = "Interstellar"
s.version = "1.3.0"
s.license = "MIT"
s.summary = "The simplest Signal<T> implementation for Functional Reactive Programming you will ever find."
s.homepage = "https://github.com/JensRavens/Interstellar"
s.social_media_url = "http://twitter.com/JensRavens"
s.authors = { "Jens Ravens" => "jens@nerdgeschoss.de" }
s.source = { git: "https://github.com/JensRavens/Interstellar.git", tag: s.version }
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.subspec "Core" do |cs|
cs.source_files = "Interstellar/*.swift"
end
s.subspec "Warpdrive" do |cs|
cs.dependency "Interstellar/Core"
cs.source_files = "Warpdrive/*.swift"
end
s.requires_arc = true
end