-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOCFuntime.podspec
More file actions
63 lines (51 loc) · 1.82 KB
/
OCFuntime.podspec
File metadata and controls
63 lines (51 loc) · 1.82 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Pod::Spec.new do |s|
s.name = "OCFuntime"
s.version = "0.3.0"
s.summary = "OCFuntime is a toolkit for objective-c runtime."
s.homepage = "https://github.com/belkevich/ocfuntime"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.social_media_url = 'https://twitter.com/okolodev'
s.author = { "Alexey Belkevich" => "belkevich.alexey@gmail.com" }
s.source = { :git => "https://github.com/belkevich/ocfuntime.git",
:tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = "5.0"
s.osx.deployment_target = "10.7"
s.subspec 'Core' do |sp|
sp.source_files = 'Classes/Core/**/*.{h,m}'
end
s.subspec 'Methods' do |sp|
sp.source_files = 'Classes/Methods/**/*.{h,m}'
sp.dependency 'OCFuntime/Core'
end
s.subspec 'Properties' do |sp|
sp.source_files = 'Classes/Properties/**/*.{h,m}'
sp.dependency 'OCFuntime/Core'
end
s.subspec 'Protocols' do |sp|
sp.source_files = 'Classes/Protocols/**/*.{h,m}'
sp.dependency 'OCFuntime/Core'
end
s.subspec 'Shared' do |sp|
sp.source_files = 'Classes/Shared/*.{h,m}'
sp.dependency 'OCFuntime/Core'
sp.dependency 'ABMultiton'
end
s.subspec 'NSObject+OCFMethods' do |sp|
sp.source_files = 'Classes/Categories/Methods/**/*.{h,m}'
sp.dependency 'OCFuntime/Methods'
sp.dependency 'OCFuntime/Shared'
end
s.subspec 'NSObject+OCFProperties' do |sp|
sp.source_files = 'Classes/Categories/Properties/**/*.{h,m}'
sp.dependency 'OCFuntime/Properties'
sp.dependency 'OCFuntime/Shared'
end
s.subspec 'All' do |sp|
sp.source_files = 'Classes/All/*.h'
sp.dependency 'OCFuntime/NSObject+OCFMethods'
sp.dependency 'OCFuntime/NSObject+OCFProperties'
sp.dependency 'OCFuntime/Protocols'
end
s.default_subspecs = 'All'
end