Rework Pods to restore execution of OS X Framework tests

This commit is contained in:
Blake Watters
2013-01-15 09:07:23 -05:00
parent 5b567b526b
commit f33a8bb405
3 changed files with 72 additions and 122 deletions

25
Podfile
View File

@@ -1,8 +1,21 @@
platform :ios, '5.0'
link_with ['RestKitTests', 'RestKitFrameworkTests']
inhibit_all_warnings!
pod 'Specta', '0.1.6'
pod 'OCMock', '2.0.1.classmocks', :git => 'git://github.com/blakewatters/ocmock.git'
pod 'OCHamcrest', '1.9'
pod 'Expecta', '0.2.0', :git => 'git://github.com/blakewatters/expecta.git', :branch => 'feature/expect-raise-with-reason'
target :ios do
platform :ios, '5.0'
link_with 'RestKitTests'
pod 'Specta', '0.1.7'
pod 'OCMock', '2.0.1.classmocks', :git => 'git://github.com/blakewatters/ocmock.git'
pod 'OCHamcrest', '1.9'
pod 'Expecta', '0.2.0', :git => 'git://github.com/blakewatters/expecta.git', :branch => 'restkit'
end
target :osx do
platform :osx, '10.7'
link_with 'RestKitFrameworkTests'
pod 'Specta', '0.1.7'
pod 'OCMock', '2.0.1.classmocks', :git => 'git://github.com/blakewatters/ocmock.git'
pod 'OCHamcrest', '1.9'
pod 'Expecta', '0.2.0', :git => 'git://github.com/blakewatters/expecta.git', :branch => 'restkit'
end