-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCarambaKit.podspec
30 lines (26 loc) · 1.1 KB
/
CarambaKit.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
Pod::Spec.new do |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' => '[email protected]' }
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