Expecta.podspec 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. Pod::Spec.new do |s|
  2. s.name = 'Expecta'
  3. s.version = '1.0.6'
  4. s.license = { :type => 'MIT', :file => 'LICENSE' }
  5. s.summary = 'A matcher framework for Objective-C & Cocoa.'
  6. s.homepage = 'http://github.com/petejkim/expecta'
  7. s.author = { 'Peter Jihoon Kim' => 'raingrove@gmail.com' }
  8. s.source = { :git => 'https://github.com/specta/expecta.git', :tag => "v#{s.version}" }
  9. s.description = %{
  10. Expecta is a matcher framework for Objective-C and Cocoa. The main
  11. advantage of using Expecta over other matcher frameworks is that you do not
  12. have to specify the data types. Also, the syntax of Expecta matchers is
  13. much more readable and does not suffer from parenthesitis. If you have used
  14. Jasmine before, you will feel right at home!
  15. }
  16. s.source_files = 'Expecta/**/*.{h,m}'
  17. s.requires_arc = false
  18. s.ios.deployment_target = '9.0'
  19. s.osx.deployment_target = '10.11'
  20. s.tvos.deployment_target = '9.0'
  21. s.watchos.deployment_target = '2.0'
  22. s.visionos.deployment_target = '1.0'
  23. s.frameworks = 'Foundation', 'XCTest'
  24. s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
  25. s.user_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/Library/Frameworks' }
  26. end