-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTheDistanceCore.podspec
More file actions
28 lines (21 loc) · 971 Bytes
/
TheDistanceCore.podspec
File metadata and controls
28 lines (21 loc) · 971 Bytes
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
Pod::Spec.new do |s|
s.name = "TheDistanceCore"
s.version = "1.3.7"
s.summary = "Develop faster with convenience functions from The Distance."
s.homepage = "https://github.com/thedistance"
s.license = "MIT"
s.author = { "The Distance" => "dev@thedistance.co.uk" }
s.platform = :ios
s.source = { :git => "https://github.com/thedistance/TheDistanceCore.git", :tag => "#{s.version}" }
s.swift_version = '4.2'
s.ios.deployment_target = "8.0"
s.requires_arc = true
s.module_name = "TheDistanceCore"
s.default_subspec = 'App'
s.subspec 'Extension' do |ext|
ext.source_files = 'TDCore/Classes/**/*.swift', 'TDCore/Extensions/**/*.swift', 'TDCore/Protocols/**/*.swift', 'TDCore-Extension/*.swift'
end
s.subspec 'App' do |app|
app.source_files = 'TDCore/Classes/**/*.swift', 'TDCore/Extensions/**/*.swift', 'TDCore/Protocols/**/*.swift', 'TheDistanceCore-App/*.swift'
end
end