Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCarambaKit.podspec
More file actions
Latest commit
30 lines (26 loc) · 1.1 KB
/
Copy pathCarambaKit.podspec
File metadata and controls
30 lines (26 loc) · 1.1 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
Pod::Spec.newdo |s|
s.name='CarambaKit'
s.version='1.0.9'
s.summary='Core components used for our projects'
s.description=<<-DESC
Set of Core components, including Networking, Persistence and much more that are used in our apps
DESC
s.homepage="https://github.com/carambalabs/CarambaKit"
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Caramba.io'=>'hello@caramba.io'}
s.source={:git=>"https://github.com/carambalabs/CarambaKit.git",:tag=>s.version.to_s}
s.ios.deployment_target='8.0'
s.osx.deployment_target='10.10'
s.tvos.deployment_target='9.0'
s.watchos.deployment_target='2.0'
s.subspec"Foundation"do |sp|
sp.source_files='CarambaKit/Classes/Foundation/**/*'
sp.dependency"Result","~> 3.0"
sp.dependency'SwiftyJSON','~> 3.0'
end
s.subspec"Networking"do |sp|
sp.dependency'CarambaKit/Foundation'
sp.dependency'KeychainSwift','~> 6.0'
sp.source_files='CarambaKit/Classes/Networking/Base/**/*'
end
end