-
Notifications
You must be signed in to change notification settings - Fork 8
/
Storez.podspec
45 lines (36 loc) · 1.29 KB
/
Storez.podspec
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
41
42
43
44
45
Pod::Spec.new do |s|
s.name = "Storez"
s.version = "4.0.0"
s.summary = "Safe, statically-typed, store-agnostic key-value storage!"
s.description = <<-DESC
Provides an extremely flexible way to implement a statically
typed key-value store, backed by the persistence store of your
choice.
DESC
s.homepage = "http://swiftkitz.github.io"
s.license = "MIT"
s.source = { :git => "https://github.com/SwiftKitz/Storez.git", :tag => "4.0.0" }
s.author = { "Maz Jaleel" => "[email protected]" }
s.social_media_url = "http://twitter.com/SwiftKitz"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.default_subspec = 'All'
### Subspecs
s.subspec 'All' do |ca|
ca.dependency 'Storez/UserDefaults'
ca.dependency 'Storez/Cache'
end
s.subspec 'Core' do |cc|
cc.source_files = 'Sources/Storez/Entity/*'
end
s.subspec 'UserDefaults' do |cu|
cu.source_files = 'Sources/Storez/Stores/UserDefaults/*'
cu.dependency 'Storez/Core'
end
s.subspec 'Cache' do |cc|
cc.source_files = 'Sources/Storez/Stores/Cache/*'
cc.dependency 'Storez/Core'
end
end