2013-05-11 13:18:43 -04:00
|
|
|
xcodeproj 'AFNetworking Tests'
|
|
|
|
|
workspace '../AFNetworking'
|
2013-05-10 15:53:33 -04:00
|
|
|
inhibit_all_warnings!
|
|
|
|
|
|
2013-05-10 18:11:40 -04:00
|
|
|
def import_pods
|
2013-05-18 14:44:20 -04:00
|
|
|
pod 'OCMock', '~> 2.1.1'
|
|
|
|
|
pod 'Expecta', '~> 0.2.1'
|
|
|
|
|
pod 'AFHTTPRequestOperationLogger', '~> 0.10.0'
|
|
|
|
|
pod 'AFNetworking', :path => '../'
|
2013-05-10 18:11:40 -04:00
|
|
|
end
|
2013-05-10 15:53:33 -04:00
|
|
|
|
|
|
|
|
target :ios do
|
|
|
|
|
platform :ios, '5.0'
|
2013-05-11 13:18:43 -04:00
|
|
|
link_with 'iOS Tests'
|
2013-05-10 18:11:40 -04:00
|
|
|
import_pods
|
2013-05-10 15:53:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
target :osx do
|
|
|
|
|
platform :osx, '10.7'
|
2013-05-11 13:18:43 -04:00
|
|
|
link_with 'OS X Tests'
|
2013-05-10 18:11:40 -04:00
|
|
|
import_pods
|
2013-05-10 15:53:33 -04:00
|
|
|
end
|