-
Notifications
You must be signed in to change notification settings - Fork 3
/
CrutchKit.podspec
39 lines (32 loc) · 1.17 KB
/
CrutchKit.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
36
37
38
39
Pod::Spec.new do |s|
s.name = "CrutchKit"
s.version = "0.0.8"
s.summary = "CrutchKit is a set of crutches for IOS development."
s.homepage = "https://github.com/CognitiveDisson/CrutchKit"
s.license = "MIT"
s.author = { "Vadim Smal" => "[email protected]" }
s.requires_arc = true
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/CognitiveDisson/CrutchKit.git", :tag => s.version.to_s }
s.header_mappings_dir = "Classes"
s.subspec 'Proxying' do |pr|
pr.header_mappings_dir = "Classes/Proxying"
pr.source_files = "Classes/Proxying/**/*.{h,m}"
pr.dependency 'CrutchKit/Runtime'
end
s.subspec 'Runtime' do |rn|
rn.header_mappings_dir = "Classes/Runtime"
rn.source_files = "Classes/Runtime/**/*.{h,m}"
end
s.subspec 'Helpers' do |hlp|
hlp.header_mappings_dir = "Classes/Helpers"
hlp.source_files = "Classes/Helpers/**/*.{h,m}"
end
s.subspec 'AnimationHandling' do |an|
an.source_files = "Classes/AnimationHandling/**/*.{h,m}"
an.dependency 'CrutchKit/Helpers'
end
s.subspec 'Debug' do |dbg|
dbg.source_files = "Classes/Debug/**/*.{h,m}"
end
end