-
Notifications
You must be signed in to change notification settings - Fork 3
/
OAuthSwiftFutures.podspec
33 lines (26 loc) · 2.03 KB
/
OAuthSwiftFutures.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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = 'OAuthSwiftFutures'
s.version = '1.0.0'
s.license = 'MIT'
s.summary = 'Bring you futures to OAuthSwift.'
s.description = <<-DESC
OAuthSwiftFutures bring you futures/promises to OAuthSwift.
It's build on top BrightFutures to achieve great asynchronous code.
DESC
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
s.homepage = 'https://github.com/OAuthSwift/OAuthSwiftFutures'
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "phimage" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => 'https://github.com/OAuthSwift/OAuthSwiftFutures.git', :tag => s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = 'Sources/*.swift'
s.dependency 'OAuthSwift'
s.dependency 'BrightFutures'
end