forked from BlocksKit/BlocksKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlocksKit.podspec
More file actions
23 lines (21 loc) · 971 Bytes
/
Copy pathBlocksKit.podspec
File metadata and controls
23 lines (21 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'BlocksKit'
s.version = '2.2.2'
s.license = 'MIT'
s.summary = 'The Objective-C block utilities you always wish you had.'
s.homepage = 'https://zwaldowski.github.io/BlocksKit'
s.author = { 'Zachary Waldowski' => '[email protected]',
'Alexsander Akers' => '[email protected]' }
s.source = { :git => 'https://github.com/redant-mobile/BlocksKit.git', :tag => "v#{s.version}" }
s.requires_arc = true
s.osx.deployment_target = '10.8'
s.ios.deployment_target = '6.0'
s.subspec 'DynamicDelegate' do |ss|
ss.source_files = 'BlocksKit/DynamicDelegate/*.{h,m}', 'BlocksKit/DynamicDelegate/Foundation/*.{h,m}'
end
s.subspec 'UIKit' do |ss|
ss.dependency 'BlocksKit/DynamicDelegate'
ss.platform = :ios
ss.source_files = 'BlocksKit/UIKit/UIAlertView+BlocksKit.{h,m}'
end
end