-
Notifications
You must be signed in to change notification settings - Fork 4
/
Wolf.podspec
27 lines (27 loc) · 1.04 KB
/
Wolf.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
Pod::Spec.new do |s|
s.name = 'Wolf'
s.version = '3.0.0'
s.summary = 'An opinionated, protocol-oriented networking layer.'
s.description = <<-DESC
Wolf approaches networking by bringing together the battle experience of Alamofire and the flexible power of Swift protocols.
DESC
s.homepage = 'https://github.com/fellipecaetano/Wolf'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Fellipe Caetano' => 'fellipe.caetano4@gmail.com' }
s.source = { :git => 'https://github.com/fellipecaetano/Wolf.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.subspec 'Basic' do |ss|
ss.source_files = ['Source/**/*.swift']
ss.dependency 'Alamofire', '~> 4.1'
ss.dependency 'PromiseKit', '~> 4.0'
ss.exclude_files = ['Source/Unbox/**/*']
end
s.subspec 'Unbox' do |ss|
ss.source_files = ['Source/**/*.swift']
ss.dependency 'Alamofire', '~> 4.1'
ss.dependency 'PromiseKit', '~> 4.0'
ss.dependency 'Unbox', '~> 2.2'
end
s.default_subspec = 'Basic'
end