forked from BlocksKit/BlocksKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlocksKit.podspec
18 lines (18 loc) · 920 Bytes
/
BlocksKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'BlocksKit'
s.version = '1.8.3'
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', :tag => "v#{s.version}" }
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'
end