diff --git a/TMCache/1.0.3/TMCache.podspec b/TMCache/1.0.3/TMCache.podspec new file mode 100644 index 00000000000000..955a6d042b5468 --- /dev/null +++ b/TMCache/1.0.3/TMCache.podspec @@ -0,0 +1,39 @@ +Pod::Spec.new do |s| + s.name = 'TMCache' + s.version = '1.0.3' + 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.0.3', + '--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', + 'keep-undocumented-member', + 'no-keep-undocumented-object', + 'no-warn-undocumented-object', + 'no-warn-undocumented-member' + ] + } +end