YYKit.podspec 882 B

1234567891011121314151617181920
  1. Pod::Spec.new do |s|
  2. s.name = 'YYKit'
  3. s.summary = 'A collection of iOS components.'
  4. s.version = '1.0.1'
  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 = 'http://svn.ouj.com:3000/duowan_iOS/YYKit'
  9. s.platform = :ios, '8.0'
  10. s.ios.deployment_target = '8.0'
  11. s.source = { :git => 'http://svn.ouj.com:3000/duowan_iOS/YYKit.git', :tag => s.version }
  12. s.requires_arc = true
  13. s.source_files = 'YYKit/**/*.{h,m}'
  14. s.public_header_files = 'YYKit/**/*.{h}'
  15. s.libraries = 'z', 'sqlite3'
  16. s.frameworks = 'UIKit', 'CoreFoundation', 'CoreText', 'CoreGraphics', 'CoreImage', 'QuartzCore', 'ImageIO', 'AssetsLibrary', 'Accelerate', 'MobileCoreServices', 'SystemConfiguration'
  17. end