AFNetworking/Tests/Podfile
2013-09-25 16:31:49 -07:00

22 lines
358 B
Ruby

xcodeproj 'AFNetworking Tests'
workspace '../AFNetworking'
inhibit_all_warnings!
def import_pods
pod 'OCMock', '~> 2.1.1'
pod 'Expecta', '~> 0.2.1'
pod 'AFNetworking', :path => '../'
end
target :ios do
platform :ios, '7.0'
link_with 'iOS Tests'
import_pods
end
target :osx do
platform :osx, '10.9'
link_with 'OS X Tests'
import_pods
end