|
@@ -0,0 +1,20 @@
|
|
|
+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.org/XCAppCollection/YYCache'
|
|
|
+ s.platform = :ios, '6.0'
|
|
|
+ s.ios.deployment_target = '6.0'
|
|
|
+ s.source = { :git => 'https://git.forgetive.org/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
|