-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBMUtilityPack.podspec
More file actions
89 lines (70 loc) · 2.43 KB
/
Copy pathBMUtilityPack.podspec
File metadata and controls
89 lines (70 loc) · 2.43 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
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
Pod::Spec.new do |s|
version = '1.1.01'
s.name = "BMUtilityPack"
s.version = version
s.summary = "Useful custom objects and functions."
s.homepage = "https://github.com/jeffreycamealy/BMUtilityPack.git"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Jeffrey Camealy" => "jcamealy@gmail.com" }
s.source = { :git => "https://github.com/jeffreycamealy/BMUtilityPack.git", :tag => version }
s.platform = :ios, '5.0'
# Subspecs
utilities_path = 'BMUtilityPack/Utilities/'
source_files_path = '/*.{h,m}'
s.source_files = utilities_path + 'BMUtilityPack.h'
subspec_name = 'BMColors'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'BMDebugUtilities'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'BMDispatch'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'BMInitMacros'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'BMLaunchArguments'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'BMSelectorButton'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'BMNSBundleUtilities'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'UIImageView+Utilities'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'UITableView+Utilities'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'UIView+FrameManipulations'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
subspec_name = 'VTPG_Common'
s.subspec subspec_name do |ss|
ss.source_files = utilities_path + subspec_name + source_files_path
ss.requires_arc = true
end
end