YYCache.podspec 748 B

1234567891011121314151617181920
  1. Pod::Spec.new do |s|
  2. s.name = 'YYCache'
  3. s.summary = 'High performance cache framework for iOS.'
  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/YYCache'
  9. s.platform = :ios, '6.0'
  10. s.ios.deployment_target = '6.0'
  11. s.source = { :git => 'https://git.forgetive.net/XCAppCollection/YYCache.git', :tag => s.version.to_s }
  12. s.requires_arc = true
  13. s.source_files = 'YYCache/*.{h,m}'
  14. s.public_header_files = 'YYCache/*.{h}'
  15. s.libraries = 'sqlite3'
  16. s.frameworks = 'UIKit', 'CoreFoundation', 'QuartzCore'
  17. end