forked from soffes/SAMCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SAMCache.podspec
22 lines (19 loc) · 1.04 KB
/
SAMCache.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = 'SAMCache'
spec.version = '0.3.4'
spec.summary = 'Simple in memory and on disk cache.'
spec.description = 'Simple in memory and on disk cache for iOS and Mac OS X.'
spec.homepage = 'https://github.com/soffes/SAMCache'
spec.author = { 'Sam Soffes' => '[email protected]' }
spec.source = { :git => 'https://github.com/soffes/SSCache.git', :tag => "v#{spec.version}" }
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.ios.deployment_target = '7.0'
spec.ios.frameworks = 'Foundation', 'UIKit'
spec.ios.source_files = ['SAMCache/SAMCache.{h,m}', 'SAMCache/SAMCache+Private.{h,m}', 'SAMCache/SAMCache+Image.{h,m}']
spec.watchos.deployment_target = '2.0'
spec.watchos.frameworks = 'Foundation', 'WatchKit'
spec.watchos.source_files = ['SAMCache/SAMCache.{h,m}', 'SAMCache/SAMCache+Private.{h,m}', 'SAMCache/SAMCache+Image.{h,m}']
spec.osx.deployment_target = '10.9'
spec.osx.frameworks = 'Foundation'
spec.osx.source_files = ['SAMCache/SAMCache.{h,m}', 'SAMCache/SAMCache+Private.{h,m}']
end