-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTWKit.podspec
52 lines (40 loc) · 1.25 KB
/
TWKit.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
@version = "0.0.8"
Pod::Spec.new do |s|
s.name = 'TWKit'
s.version = @version
s.summary = 'TWKit'
s.homepage = 'https://github.com/taewan0530/TWKit'
s.license = 'MIT'
s.author = { 'taewan' => '[email protected]' }
s.source = { :git => 'https://github.com/taewan0530/TWKit.git', :tag => @version }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.subspec 'All' do |sub|
sub.source_files = 'Pod/**/*.{swift}'
end
s.subspec 'Extension' do |sub|
sub.source_files = 'Pod/extensions/*.{swift}'
end
s.subspec 'Function' do |sub|
sub.source_files = 'Pod/utils/Functions.swift'
end
s.subspec 'ObjectPool' do |sub|
sub.source_files = 'Pod/utils/ObjectPool.swift'
end
s.subspec 'StructObject' do |sub|
sub.source_files = 'Pod/utils/StructObject.swift'
end
s.subspec 'EasyStyle' do |sub|
sub.source_files = 'Pod/EasyStyle/*.{swift}'
end
s.subspec 'AttributedString' do |sub|
sub.source_files = 'Pod/AttributedString/*.{swift}'
end
s.subspec 'GetConstraint' do |sub|
sub.source_files = 'Pod/GetConstraint/*.{swift}'
end
s.subspec 'KeyboardHelper' do |sub|
sub.source_files = 'Pod/KeyboardHelper/*.{swift}'
end
s.default_subspec = 'All'
end