-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSwiftHelpers.podspec
More file actions
41 lines (32 loc) · 1.15 KB
/
SwiftHelpers.podspec
File metadata and controls
41 lines (32 loc) · 1.15 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
Pod::Spec.new do |s|
s.name = 'SwiftHelpers'
s.version = '7.0.5'
s.license = 'MIT'
s.summary = 'A collection of Swift extensions'
s.homepage = 'git@github.com:dmiotti/SwiftHelpers.git'
s.social_media_url = 'https://twitter.com/davidmiotti'
s.authors = { 'David Miotti' => 'david.miotti@gmail.com' }
s.source = { :git => 'git@github.com:dmiotti/SwiftHelpers.git', :tag => s.version }
s.frameworks = 'UIKit', 'Foundation'
s.source_files = 'SwiftHelpers/**/*.swift'
s.swift_versions = ['5.0', '5.1']
s.subspec 'Core' do |sp|
sp.source_files = 'SwiftHelpers/Core'
end
s.subspec 'CoreData' do |sp|
sp.source_files = 'SwiftHelpers/CoreData'
sp.frameworks = 'UIKit', 'Foundation', 'CoreData'
end
s.subspec 'DateTime' do |sp|
sp.source_files = 'SwiftHelpers/Date-Time'
end
s.subspec 'UI' do |sp|
sp.source_files = 'SwiftHelpers/UI'
end
s.subspec 'Misc' do |sp|
sp.source_files = 'SwiftHelpers/Misc'
end
s.subspec 'Basic' do |sp|
sp.source_files = 'SwiftHelpers/Misc/SHLocalizationHelper.swift', 'SwiftHelpers/UI/SHIBInspectableExtension.swift'
end
end