forked from BlocksKit/BlocksKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlocksKit.podspec
27 lines (27 loc) · 1.17 KB
/
BlocksKit.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
Pod::Spec.new do |s|
s.name = 'BlocksKit'
s.version = '1.8.1'
s.license = 'MIT'
s.summary = 'The Objective-C block utilities you always wish you had.'
s.homepage = 'https://github.com/pandamonia/BlocksKit'
s.author = { 'Zachary Waldowski' => '[email protected]',
'Alexsander Akers' => '[email protected]' }
s.source = { :git => 'https://github.com/pandamonia/BlocksKit.git', :branch => 'next' }
s.requires_arc = true
s.osx.source_files = 'BlocksKit/*.{h,m}'
s.osx.library = 'ffi'
s.osx.deployment_target = '10.7'
s.ios.dependency 'libffi'
s.ios.frameworks = 'MessageUI'
s.ios.source_files = 'BlocksKit/*.{h,m}', 'BlocksKit/UIKit/*.{h,m}', 'BlocksKit/MessageUI/*.{h,m}'
s.ios.deployment_target = '5.0'
s.documentation = {
:html => 'http://pandamonia.github.com/BlocksKit/Documentation/index.html',
:appledoc => [
'--project-company', 'Pandamonia LLC',
'--company-id', 'us.pandamonia',
'--no-repeat-first-par',
'--no-warn-invalid-crossref'
]
}
end