-
Notifications
You must be signed in to change notification settings - Fork 3
/
Coherence.podspec
50 lines (41 loc) · 1.55 KB
/
Coherence.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
#
# Be sure to run `pod lib lint Coherence.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Coherence"
s.version = "5.0.1"
s.summary = "Coherence"
s.description = <<-DESC
Coherence is a collection of base frameworks that help set the groundwork for module development.
DESC
s.homepage = "https://github.com/tonystone/coherence"
s.license = 'Apache License, Version 2.0'
s.author = "Tony Stone"
s.source = { :git => "https://github.com/tonystone/coherence.git", :tag => s.version.to_s }
s.swift_version = '4.2'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.module_name = 'Coherence'
s.default_subspecs = ['Container', 'Connect']
s.subspec 'CoreExtensions' do |sp|
sp.source_files = 'Sources/CoreExtensions/**/*'
end
s.subspec 'Container' do |sp|
sp.dependency 'Coherence/CoreExtensions'
sp.source_files = 'Sources/Container/*'
end
s.subspec 'Connect' do |sp|
sp.dependency 'Coherence/CoreExtensions'
sp.dependency 'Coherence/Container'
sp.source_files = 'Sources/Connect/**/*'
end
s.dependency 'TraceLog', ">= 3", "<= 5"
end