32 lines
857 B
Ruby
32 lines
857 B
Ruby
Pod::Spec.new do |f|
|
|
|
|
f.name = 'Fingertips'
|
|
f.version = '0.1.0'
|
|
|
|
f.summary = 'Touch indicators for iOS applications.'
|
|
f.description = 'A small UIWindow subclass that gives you automatic presentation mode in your iOS app.'
|
|
f.homepage = 'http://github.com/developmentseed/fingertips'
|
|
f.license = 'BSD'
|
|
f.author = { 'Justin R. Miller' => 'justin@developmentseed.org' }
|
|
|
|
f.source = { :git => 'https://github.com/developmentseed/fingertips.git', :tag => '0.1.0' }
|
|
|
|
f.platform = :ios, '5.0'
|
|
|
|
f.source_files = '*.{h,m}'
|
|
|
|
f.requires_arc = true
|
|
|
|
f.documentation = {
|
|
:appledoc => [
|
|
'--project-company', 'Development Seed',
|
|
'--docset-copyright', 'Development Seed',
|
|
'--no-keep-undocumented-objects',
|
|
'--no-keep-undocumented-members',
|
|
'--ignore', '.m',
|
|
]
|
|
}
|
|
|
|
f.framework = 'UIKit'
|
|
|
|
end |