forked from equinux/eqgtm-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGTMOAuth.podspec
26 lines (21 loc) · 930 Bytes
/
GTMOAuth.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
Pod::Spec.new do |s|
s.name = 'EQGTMOAuth'
s.version = '1.1.3'
s.license = 'Apache'
s.summary = 'Stripped down OAuth engine for iOS.'
s.homepage = 'https://github.com/equinux/eqgtm-oauth'
s.author = { 'equinux' => '[email protected]' }
s.source = { :git => 'https://github.com/equinux/eqgtm-oauth.git', :tag => s.version }
s.ios.deployment_target = '6.0'
s.ios.public_header_files = 'OAuth_v1.0/*.h'
s.ios.source_files = 'OAuth_v1.0/*.{h,m}'
s.ios.frameworks = 'Security', 'SystemConfiguration'
s.tvos.deployment_target = '9.0'
s.tvos.public_header_files = 'OAuth_v1.0/*.h'
s.tvos.source_files = 'OAuth_v1.0/*.{h,m}'
s.tvos.frameworks = 'Security', 'SystemConfiguration'
s.osx.deployment_target = '10.7'
s.osx.public_header_files = 'OAuth_v1.0/*.h'
s.osx.source_files = 'OAuth_v1.0/*.{h,m}'
s.requires_arc = false
end