Skip to content

Commit

Permalink
Fixed sources for OS X, do not include the iOS view controller.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkDust committed Apr 29, 2015
1 parent 07bb242 commit eb20aa4
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions GTMOAuth.podspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
Pod::Spec.new do |s|
s.name = 'EQGTMOAuth'
s.version = '1.1'
s.version = '1.1.1'
s.license = 'Apache'
s.summary = 'Stripped down OAuth engine for iOS.'
s.homepage = 'https://github.com/equinux/eqgtm-oauth'

s.author = { 'equinux' => 'support@equinux.com' }
s.source = { :git => 'https://github.com/equinux/eqgtm-oauth.git', :tag => '1.1' }
s.source = { :git => 'https://github.com/equinux/eqgtm-oauth.git', :tag => '1.1.1' }

s.ios.deployment_target = '6.0'
s.ios.public_header_files = '**/*.h'
s.ios.source_files = '**/*.{h,m}'
s.ios.frameworks = 'Security', 'SystemConfiguration'

s.osx.deployment_target = '10.7'
s.osx.public_header_files = 'OAuth_v1.0/*.{h,m}'
s.osx.source_files = 'OAuth_v1.0/*.{h,m}'

s.requires_arc = false
s.public_header_files = '**/*.h'
s.source_files = '**/*.{h,m}'
s.ios.frameworks = 'Security', 'SystemConfiguration'
end

0 comments on commit eb20aa4

Please sign in to comment.