Result.podspec 693 B

123456789101112131415161718
  1. Pod::Spec.new do |s|
  2. s.name = 'Result'
  3. s.version = '2.1.3'
  4. s.summary = 'Swift type modelling the success/failure of arbitrary operations'
  5. s.homepage = 'https://github.com/antitypical/Result'
  6. s.license = { :type => 'MIT', :file => 'LICENSE' }
  7. s.author = { 'Rob Rix' => 'rob.rix@github.com' }
  8. s.source = { :git => 'https://github.com/antitypical/Result.git', :tag => s.version }
  9. s.source_files = 'Result/*.swift'
  10. s.requires_arc = true
  11. s.pod_target_xcconfig = { 'SWIFT_VERSION' => '2.3' }
  12. s.ios.deployment_target = '8.0'
  13. s.osx.deployment_target = '10.9'
  14. s.watchos.deployment_target = '2.0'
  15. s.tvos.deployment_target = '9.0'
  16. end