forked from ibireme/YYCache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYYCache.podspec
More file actions
20 lines (17 loc) · 718 Bytes
/
YYCache.podspec
File metadata and controls
20 lines (17 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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://github.com/ibireme/YYCache'
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.source = { :git => 'https://github.com/ibireme/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