Podfile 378 B

1234567891011121314151617181920212223
  1. source 'https://github.com/CocoaPods/Specs'
  2. use_frameworks!
  3. xcodeproj 'CocoaLumberjack Tests'
  4. workspace '../Framework/Lumberjack'
  5. inhibit_all_warnings!
  6. def import_pods
  7. pod 'Expecta'
  8. pod 'OCMock'
  9. pod 'CocoaLumberjack', :path => '../'
  10. end
  11. target :'iOS Tests' do
  12. platform :ios, '6.0'
  13. import_pods
  14. end
  15. target :'OS X Tests' do
  16. platform :osx, '10.8'
  17. import_pods
  18. end