1234567891011121314151617181920 |
- Pod::Spec.new do |s|
- s.name = 'YYCache'
- s.summary = 'High performance cache framework for iOS.'
- s.version = '1.0.4'
- s.license = { :type => 'MIT', :file => 'LICENSE' }
- s.authors = { 'ibireme' => 'ibireme@gmail.com' }
- s.social_media_url = 'http://blog.ibireme.com'
- s.homepage = 'https://git.forgetive.net/XCAppCollection/YYCache'
- s.platform = :ios, '6.0'
- s.ios.deployment_target = '6.0'
- s.source = { :git => 'https://git.forgetive.net/XCAppCollection/YYCache.git', :tag => s.version.to_s }
-
- s.requires_arc = true
- s.source_files = 'YYCache/*.{h,m}'
- s.public_header_files = 'YYCache/*.{h}'
-
- s.libraries = 'sqlite3'
- s.frameworks = 'UIKit', 'CoreFoundation', 'QuartzCore'
- end
|