forked from michalkonturek/MKFoundationKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MKFoundationKit.podspec
91 lines (72 loc) · 2.14 KB
/
MKFoundationKit.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
Pod::Spec.new do |s|
s.name = "MKFoundationKit"
s.version = "1.3.0"
s.summary = "Collection of categories for NSFoundation classes to accelerate development."
s.homepage = "https://github.com/michalkonturek/MKFoundationKit"
s.license = 'MIT'
s.author = {
"Michal Konturek" => "[email protected]"
}
s.ios.deployment_target = '7.0'
s.social_media_url = 'https://twitter.com/michalkonturek'
s.source = {
:git => "https://github.com/michalkonturek/MKFoundationKit.git",
:tag => s.version.to_s
}
s.source_files = 'Source/**/*.{h,m}'
s.requires_arc = true
s.subspec 'AutoDescribe' do |ss|
ss.source_files = 'Source/**/*AutoDescribe.{h,m}'
ss.requires_arc = true
end
s.subspec 'Base64' do |ss|
ss.source_files = 'Source/**/*Base64.{h,m}'
ss.requires_arc = true
end
s.subspec 'Block' do |ss|
ss.source_files = 'Source/**/*Block.{h,m}'
ss.requires_arc = true
end
s.subspec 'Queue' do |ss|
ss.source_files = 'Source/**/*Queue.{h,m}'
ss.requires_arc = true
end
s.subspec 'Stack' do |ss|
ss.source_files = 'Source/**/*Stack.{h,m}'
ss.requires_arc = true
end
s.subspec 'NSArray' do |ss|
ss.source_files = 'Source/NSArray/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'NSBundle' do |ss|
ss.source_files = 'Source/NSBundle/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'NSDate' do |ss|
ss.source_files = 'Source/NSDate/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'NSDictionary' do |ss|
ss.source_files = 'Source/NSDictionary/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'NSNumber' do |ss|
ss.source_files = 'Source/NSNumber/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'NSObject' do |ss|
ss.source_files = 'Source/NSObject/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'NSSet' do |ss|
ss.dependency 'MKFoundationKit/Block'
ss.source_files = 'Source/NSSet/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'NSString' do |ss|
ss.dependency 'MKFoundationKit/Base64'
ss.source_files = 'Source/NSString/*.{h,m}'
ss.requires_arc = true
end
end