-
Notifications
You must be signed in to change notification settings - Fork 26
/
BBlock.podspec
35 lines (29 loc) · 960 Bytes
/
BBlock.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
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = 'BBlock'
s.version = '1.2.1'
s.license = 'MIT'
s.summary = 'Objective-c block categories and subclasses.'
s.homepage = 'https://github.com/kgn/BBlock'
s.authors = { 'David Keegan' => '[email protected]' }
s.source = { :git => 'https://github.com/kgn/BBlock.git', :tag => "v#{s.version}" }
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'BBlock.{h,m}'
s.subspec 'Foundation' do |ss|
ss.source_files = 'Categories/Foundation/*.{h,m}'
end
s.subspec 'AppKit' do |ss|
ss.platform = :osx
ss.source_files = 'Categories/AppKit/*.{h,m}'
end
s.subspec 'UIKit' do |ss|
ss.platform = :ios
ss.source_files = 'Categories/UIKit/*.{h,m}'
end
s.subspec 'StoreKit' do |ss|
ss.platform = :ios
ss.source_files = 'Categories/StoreKit/*.{h,m}'
ss.frameworks = 'StoreKit'
end
end