YYModel.podspec 795 B

1234567891011121314151617181920212223
  1. Pod::Spec.new do |s|
  2. s.name = 'YYModel'
  3. s.summary = 'High performance model framework for iOS/OSX.'
  4. s.version = '1.0.4'
  5. s.license = { :type => 'MIT', :file => 'LICENSE' }
  6. s.authors = { 'ibireme' => 'ibireme@gmail.com' }
  7. s.social_media_url = 'http://blog.ibireme.com'
  8. s.homepage = 'https://git.forgetive.net/XCAppCollection/YYModel'
  9. s.ios.deployment_target = '6.0'
  10. s.osx.deployment_target = '10.7'
  11. s.watchos.deployment_target = '2.0'
  12. s.tvos.deployment_target = '9.0'
  13. s.source = { :git => 'https://git.forgetive.net/XCAppCollection/YYModel.git', :tag => s.version.to_s }
  14. s.requires_arc = true
  15. s.source_files = 'YYModel/*.{h,m}'
  16. s.public_header_files = 'YYModel/*.{h}'
  17. s.frameworks = 'Foundation', 'CoreFoundation'
  18. end