forked from eugeneheckert/iOS-UtiliKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UtiliKit.podspec
61 lines (48 loc) · 1.9 KB
/
UtiliKit.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
#
# Be sure to run `pod lib lint UtiliKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'UtiliKit'
s.version = '1.7.0'
s.summary = 'All the things you are tired of writing.'
s.description = <<-DESC
This framework is a collection of subspecs designed to be used to facilitate simpler, cleaner code. These classes and extensions are common cases.
DESC
s.homepage = 'https://github.com/BottleRocketStudios/iOS-UtiliKit'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Bottle Rocket Studios' => '[email protected]' }
s.source = { :git => 'https://github.com/bottlerocketstudios/iOS-UtiliKit.git', :tag => s.version.to_s }
s.source_files = 'Sources/UtiliKit/**/*'
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.dependency 'UtiliKit/Instantiation'
core.dependency 'UtiliKit/General'
end
s.subspec 'Instantiation' do |instantiation|
instantiation.source_files = 'Sources/UtiliKit/Instantiation/*.swift'
end
s.subspec 'TimelessDate' do |timeless|
timeless.source_files = 'Sources/UtiliKit/TimelessDate/*.swift'
end
s.subspec 'General' do |general|
general.source_files = 'Sources/UtiliKit/General/*.swift'
end
s.subspec 'Version' do |version|
version.source_files = 'Sources/UtiliKit/Version/*.swift'
end
s.subspec 'Container' do |container|
container.source_files = 'Sources/UtiliKit/Container/**/*.swift'
end
s.subspec 'ActiveLabel' do |activeLabel|
activeLabel.source_files = 'Sources/UtiliKit/ActiveLabel/*.swift'
end
s.subspec 'Obfuscation' do |obfuscation|
obfuscation.source_files = 'Sources/UtiliKit/Obfuscation/*.swift'
end
end