-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathRxCache.podspec
More file actions
36 lines (29 loc) · 1.09 KB
/
RxCache.podspec
File metadata and controls
36 lines (29 loc) · 1.09 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
Pod::Spec.new do |s|
s.name = "RxCache"
s.version = "1.0.2"
s.summary = "Reactive caching library for Swift"
s.homepage = "https://github.com/FuckBoilerplate/RxCache"
s.license = 'MIT'
s.author = { "Victor Albertos" => "me@victoralbertos.com" }
s.source = { :git => "https://github.com/FuckBoilerplate/RxCache.git", :tag => s.version.to_s }
s.social_media_url = 'https://github.com/FuckBoilerplate'
s.watchos.deployment_target = '2.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = 'Sources/Core/**/*'
ss.dependency "RxSwift", ">= 3.0.0-beta.1"
end
s.subspec "ObjectMapper" do |ss|
ss.source_files = 'Sources/Cacheables/ObjectMapper/*.swift'
ss.dependency "RxCache/Core"
ss.dependency "ObjectMapper", "~> 2.0"
end
s.subspec "Gloss" do |ss|
ss.source_files = 'Sources/Cacheables/Gloss/*.swift'
ss.dependency "RxCache/Core"
ss.dependency "Gloss", "~> 1.0"
end
end