forked from TumblrArchive/TMCache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTMCache.podspec
35 lines (35 loc) · 1.28 KB
/
TMCache.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = 'TMCache'
s.version = '1.2.0'
s.source_files = 'TMCache/*.{h,m}'
s.homepage = 'https://github.com/tumblr/TMCache'
s.summary = 'Fast parallel object cache for iOS and OS X.'
s.authors = { 'Justin Ouellette' => 'jstn@tumblr.com' }
s.source = { :git => 'https://github.com/tumblr/TMCache.git', :tag => "#{s.version}" }
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.requires_arc = true
s.frameworks = 'Foundation'
s.ios.weak_frameworks = 'UIKit'
s.osx.weak_frameworks = 'AppKit'
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.documentation = {
:html => 'http://cocoadocs.org/docsets/TMCache/',
:appledoc => [
'--company-id', 'com.tumblr',
'--project-name', 'TMCache',
'--project-company', 'Tumblr',
'--project-version', '1.2.0',
'--docset-min-xcode-version', '4.3',
'--docset-bundle-name', '%PROJECT %VERSION',
'--docset-bundle-id', '%COMPANYID.%PROJECTID',
'--docset-bundle-filename', '%COMPANYID.%PROJECTID-%VERSIONID.docset',
'--ignore', 'tests',
'--ignore', 'docs',
'--ignore', '*.m',
'--no-repeat-first-par',
'--explicit-crossref',
'--clean-output'
]
}
end