Skip to content

Commit

Permalink
Add pod spec
Browse files Browse the repository at this point in the history
  • Loading branch information
sdkdimon committed Sep 10, 2014
1 parent 089a9e8 commit cafd2ed
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions GTMOAuth.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Pod::Spec.new do |s|
s.name = 'GTMOAuth'
s.version = '0.1.0'
s.license = 'MIT'
s.summary = 'OAuth engine for iOS.'
s.homepage = 'https://github.com/sdkdimon/gtm-oauth'

s.author = { 'daemmon' => 'sdkdimon@gmail.com' }
s.source = { :git => 'https://github.com/sdkdimon/gtm-oauth.git', :tag => '0.1.0' }

s.ios.deployment_target = '6.0'

s.requires_arc = false

s.public_header_files ='OAuth_v1.0/*.h', 'OAuth_v2.0/*.h'
s.source_files = 'GTMHTTPFetcher/*.{h,m}', 'OAuth_v1.0/*.{h,m}', 'OAuth_v2.0/*.{h,m}'
s.private_header_files = 'GTMHTTPFetcher/*.h'
s.ios.frameworks = 'Security', 'SystemConfiguration'
end

0 comments on commit cafd2ed

Please sign in to comment.