forked from hyperoslo/OhMyAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OhMyAuth.podspec
28 lines (23 loc) · 917 Bytes
/
OhMyAuth.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
Pod::Spec.new do |s|
s.name = "OhMyAuth"
s.summary = "Simple OAuth2 library with a support of multiple services."
s.version = "2.0.0"
s.homepage = "https://github.com/hyperoslo/OhMyAuth"
s.license = 'MIT'
s.author = { "Hyper Interaktiv AS" => "[email protected]" }
s.source = {
:git => "https://github.com/hyperoslo/OhMyAuth.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/hyperoslo'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.requires_arc = true
s.ios.source_files = 'Sources/{iOS,Shared}/**/*'
s.osx.source_files = 'Sources/{Mac,Shared}/**/*'
s.ios.frameworks = 'UIKit', 'Foundation'
s.osx.frameworks = 'Cocoa', 'Foundation'
s.dependency 'Keychains', '~> 2.0'
s.dependency 'JWTDecode', '~> 2.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
end