RNCommonCrypto.podspec 598 B

1234567891011121314
  1. Pod::Spec.new do |s|
  2. s.name = 'RNCommonCrypto'
  3. s.version = '4.0.0-beta.1'
  4. s.summary = 'Swift-compatibility module for CommonCrypto'
  5. s.authors = {'Rob Napier' => 'robnapier@gmail.com'}
  6. s.social_media_url = 'https://twitter.com/cocoaphony'
  7. s.license = 'MIT'
  8. s.source = { :git => 'https://github.com/rnapier/RNCryptor.git', :tag => "v#{s.version.to_s}" }
  9. s.homepage = 'https://github.com/rnapier/RNCryptor'
  10. s.source_files = 'CommonCrypto/CommonCrypto.c'
  11. s.public_header_files = 'CommonCrypto/CommonCrypto.h'
  12. s.ios.deployment_target = '8.0'
  13. s.osx.deployment_target = '10.9'
  14. end