This repository was archived by the owner on Mar 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathInterstellar.podspec
More file actions
40 lines (35 loc) · 1.33 KB
/
Copy pathInterstellar.podspec
File metadata and controls
40 lines (35 loc) · 1.33 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/ruby
Pod::Spec.new do |s|
s.name = "Interstellar"
s.version = "2.2.0"
s.license = "MIT"
s.summary = "The simplest Observable<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.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.subspec "Core" do |cs|
cs.source_files = [
"Sources/Interstellar/Result.swift",
"Sources/Interstellar/Signal.swift",
"Sources/Interstellar/Observable.swift",
"Sources/Interstellar/ObserverToken.swift",
"Sources/Interstellar/Mutex.swift",
"Sources/Interstellar/ResultType.swift",
"Sources/Interstellar/Observable+Result.swift"]
end
s.subspec "Warpdrive" do |cs|
cs.dependency "Interstellar/Core"
cs.source_files = [
"Sources/Interstellar/Warpdrive/Debounce.swift",
"Sources/Interstellar/Warpdrive/Delay.swift",
"Sources/Interstellar/Warpdrive/Threading.swift",
"Sources/Interstellar/Warpdrive/Waiting.swift"
]
end
s.requires_arc = true
end