Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.

Commit

Permalink
Set correct deployment target for mac os x
Browse files Browse the repository at this point in the history
  • Loading branch information
x2on committed Nov 3, 2013
1 parent 68966de commit 9c3de70
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Podspecs/GHUnit.podspec
Expand Up @@ -7,9 +7,9 @@ Pod::Spec.new do |s|
s.documentation_url = 'http://gh-unit.github.io/gh-unit/' s.documentation_url = 'http://gh-unit.github.io/gh-unit/'
s.authors = { 'Gabriel Handford' => 'gabrielh@gmail.com', 'Felix Schulze' => 'code@felixschulze.de' } s.authors = { 'Gabriel Handford' => 'gabrielh@gmail.com', 'Felix Schulze' => 'code@felixschulze.de' }
s.source = { :git => 'https://github.com/gh-unit/gh-unit.git', :tag => s.version.to_s } s.source = { :git => 'https://github.com/gh-unit/gh-unit.git', :tag => s.version.to_s }
s.description = 'GHUnit is a test framework for Objective-C, Mac OS X 10.6 and above and iPhone 4.3 and above. It can be used standalone or with other testing frameworks like SenTestingKit or GTM.' s.description = 'GHUnit is a test framework for Objective-C, Mac OS X 10.7 and above and iPhone 4.3 and above. It can be used standalone or with other testing frameworks like SenTestingKit or GTM.'
s.ios.deployment_target = '4.3' s.ios.deployment_target = '4.3'
s.osx.deployment_target = '10.6' s.osx.deployment_target = '10.7'
s.source_files = 'Classes/**/*.{h,m}', 'Libraries/GTM/**/*.{h,m}' s.source_files = 'Classes/**/*.{h,m}', 'Libraries/GTM/**/*.{h,m}'
s.ios.source_files = 'Classes-iOS/**/*.{h,m}' s.ios.source_files = 'Classes-iOS/**/*.{h,m}'
s.osx.source_files = 'Classes-MacOSX/UI/*.{h,m}' s.osx.source_files = 'Classes-MacOSX/UI/*.{h,m}'
Expand Down
2 changes: 1 addition & 1 deletion Podspecs/GHUnitIOS.podspec
Expand Up @@ -7,7 +7,7 @@ Pod::Spec.new do |s|
s.documentation_url = 'http://gh-unit.github.io/gh-unit/' s.documentation_url = 'http://gh-unit.github.io/gh-unit/'
s.authors = { 'Gabriel Handford' => 'gabrielh@gmail.com', 'Felix Schulze' => 'code@felixschulze.de' } s.authors = { 'Gabriel Handford' => 'gabrielh@gmail.com', 'Felix Schulze' => 'code@felixschulze.de' }
s.source = { :git => 'https://github.com/gh-unit/gh-unit.git', :tag => s.version.to_s} s.source = { :git => 'https://github.com/gh-unit/gh-unit.git', :tag => s.version.to_s}
s.description = 'GHUnit is a test framework for Objective-C, Mac OS X 10.6 and above and iPhone 4.3 and above. It can be used standalone or with other testing frameworks like SenTestingKit or GTM.' s.description = 'GHUnit is a test framework for Objective-C, Mac OS X 10.7 and above and iPhone 4.3 and above. It can be used standalone or with other testing frameworks like SenTestingKit or GTM.'
s.source_files = 'Classes/**/*.{h,m}', 'Classes-iOS/**/*.{h,m}', 'Libraries/GTM/**/*.{h,m}' s.source_files = 'Classes/**/*.{h,m}', 'Classes-iOS/**/*.{h,m}', 'Libraries/GTM/**/*.{h,m}'
s.platform = :ios s.platform = :ios
s.ios.deployment_target = '4.3' s.ios.deployment_target = '4.3'
Expand Down
4 changes: 2 additions & 2 deletions Podspecs/GHUnitOSX.podspec
Expand Up @@ -7,10 +7,10 @@ Pod::Spec.new do |s|
s.documentation_url = 'http://gh-unit.github.io/gh-unit/' s.documentation_url = 'http://gh-unit.github.io/gh-unit/'
s.authors = { 'Gabriel Handford' => 'gabrielh@gmail.com', 'Felix Schulze' => 'code@felixschulze.de' } s.authors = { 'Gabriel Handford' => 'gabrielh@gmail.com', 'Felix Schulze' => 'code@felixschulze.de' }
s.source = { :git => 'https://github.com/gh-unit/gh-unit.git', :tag => s.version.to_s} s.source = { :git => 'https://github.com/gh-unit/gh-unit.git', :tag => s.version.to_s}
s.description = 'GHUnit is a test framework for Objective-C, Mac OS X 10.6 and above and iPhone 4.3 and above. It can be used standalone or with other testing frameworks like SenTestingKit or GTM.' s.description = 'GHUnit is a test framework for Objective-C, Mac OS X 10.7 and above and iPhone 4.3 and above. It can be used standalone or with other testing frameworks like SenTestingKit or GTM.'
s.source_files = 'Classes/**/*.{h,m}', 'Classes-MacOSX/UI/*.{h,m}', 'Libraries/GTM/**/*.{h,m}' s.source_files = 'Classes/**/*.{h,m}', 'Classes-MacOSX/UI/*.{h,m}', 'Libraries/GTM/**/*.{h,m}'
s.platform = :osx s.platform = :osx
s.osx.deployment_target = '10.6' s.osx.deployment_target = '10.7'
s.resources = 'Classes-MacOSX/UI/*.xib' s.resources = 'Classes-MacOSX/UI/*.xib'
s.requires_arc = true s.requires_arc = true


Expand Down

0 comments on commit 9c3de70

Please sign in to comment.