16 lines
763 B
Ruby
16 lines
763 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'GHUnitOSX'
|
|
s.version = '0.5.6'
|
|
s.license = 'MIT'
|
|
s.summary = 'Test Framework for Objective-C.'
|
|
s.homepage = 'https://github.com/gabriel/gh-unit'
|
|
s.author = { 'Gabriel Handford' => 'gabrielh@gmail.com' }
|
|
s.source = { :git => 'https://github.com/gabriel/gh-unit.git', :tag => '0.5.6'}
|
|
s.description = 'GHUnit is a test framework for Objective-C, Mac OS X 10.5 and above and iPhone 3.x and above. It can be used standalone or with other testing frameworks like SenTestingKit or GTM.'
|
|
s.source_files = FileList['Classes/**/*.{h,m}'].exclude(/GHViewTestCase/), 'Classes-MacOSX/UI/*.{h,m}', 'Libraries/GTM/**/*.{h,m}'
|
|
s.platform = :osx
|
|
s.resources = 'Classes-MacOSX/UI/*.xib'
|
|
s.requires_arc = true
|
|
end
|
|
|