Skip to content

Commit

Permalink
Merge pull request #4 from DarkDust/master
Browse files Browse the repository at this point in the history
Exclude the unused view controller as it causes a compiler error
  • Loading branch information
Maximilian Szengel committed Mar 21, 2016
2 parents 7b13cc1 + 002a0fb commit 90da7b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions GTMOAuth.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'EQGTMOAuth'
s.version = '1.1.2'
s.version = '1.1.3'
s.license = 'Apache'
s.summary = 'Stripped down OAuth engine for iOS.'
s.homepage = 'https://github.com/equinux/eqgtm-oauth'
Expand All @@ -9,17 +9,17 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/equinux/eqgtm-oauth.git', :tag => s.version }

s.ios.deployment_target = '6.0'
s.ios.public_header_files = '**/*.h'
s.ios.source_files = '**/*.{h,m}'
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 = '**/*.h'
s.tvos.source_files = '**/*.{h,m}'
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,m}'
s.osx.public_header_files = 'OAuth_v1.0/*.h'
s.osx.source_files = 'OAuth_v1.0/*.{h,m}'

s.requires_arc = false
Expand Down

0 comments on commit 90da7b2

Please sign in to comment.