forked from teamcarma/IOS-AlamofireDomain
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Alamofire.podspec
35 lines (29 loc) · 1.16 KB
/
Alamofire.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
Pod::Spec.new do |s|
s.name = 'Alamofire'
s.version = '4.0.1'
s.license = 'MIT'
s.summary = 'Elegant HTTP Networking in Swift'
s.homepage = 'https://github.com/Alamofire/Alamofire'
s.social_media_url = 'http://twitter.com/AlamofireSF'
s.authors = { 'Alamofire Software Foundation' => '[email protected]' }
s.source = { :git => 'https://github.com/Alamofire/Alamofire.git', :tag => s.version }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Source/*.swift'
end
Pod::Spec.new do |s|
s.name = 'AlamofireDomain'
s.version = '4.0'
s.license = 'MIT'
s.summary = 'Elegant HTTP Networking in Swift, with addition domain identifier'
s.homepage = 'https://github.com/tonyli508/AlamofireDomain'
s.social_media_url = 'https://twitter.com/tonyli508'
s.authors = { 'Alamofire Software Foundation' => '[email protected]' }
s.source = { :git => 'https://github.com/tonyli508/AlamofireDomain.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.source_files = 'Source/*.swift'
s.requires_arc = true
end