-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmacros_blocks.podspec
More file actions
30 lines (25 loc) · 913 Bytes
/
macros_blocks.podspec
File metadata and controls
30 lines (25 loc) · 913 Bytes
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
Pod::Spec.new do |s|
s.name = "macros_blocks"
s.version = "0.0.3"
s.summary = "Useful macros for objective-c blocks."
s.homepage = "https://github.com/belkevich/blocks"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Alexey Belkevich" => "belkevich.alexey@gmail.com" }
s.source = { :git => "https://github.com/belkevich/blocks.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = "5.0"
s.osx.deployment_target = "10.7"
s.social_media_url = 'https://twitter.com/okolodev'
s.subspec 'core' do |sp|
sp.source_files = 'macros_blocks.h'
end
s.subspec 'extra' do |sp|
sp.source_files = 'macros_extra.h'
end
s.subspec 'all' do |sp|
sp.source_files = 'macros_all.h'
sp.dependency 'macros_blocks/core'
sp.dependency 'macros_blocks/extra'
end
s.default_subspecs = 'core'
end