-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathBeagleUI.podspec
106 lines (79 loc) · 4.29 KB
/
BeagleUI.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#
# Copyright 2020 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
tag = `git describe --tags --match "[0-9]*.[0-9]*.[0-9]*"` # e.g: "0.2.7-5-gc9c4730d"
(last_release, _, new_commit) = tag.split("-")
# dev version will only be used when user's Podfile references our git repository directly
# without using tags for releases
dev_version = "#{last_release}-DEV-#{new_commit}"
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = "BeagleUI"
spec.version = new_commit ? dev_version : last_release
spec.summary = "This is the Beagle framework for iOS"
spec.description = <<-DESC
We encourage you to use Beagle from Carthage, since it is the preferred
way of using it. But if you are willing to just test Beagle, you can use this
pod instead.
DESC
spec.homepage = "https://zup-products.gitbook.io/beagle/"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = "Apache License 2.0"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.author = "Zup IT"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, "10.0"
spec.swift_version = "4.1"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
source = { :git => "[email protected]:ZupIT/beagle.git" }
if new_commit
source[:commit] = new_commit
else
source[:tag] = last_release
end
spec.source = source
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.default_subspec = "BeagleUI"
# ――― Beagle UI ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.subspec 'BeagleUI' do |beagleUI|
source = 'iOS/Sources/BeagleUI/Sources'
sourcery = 'iOS/Sources/BeagleUI/SourceryFiles/'
beagleUI.source_files = [
source + '/**/*.swift',
sourcery + "Generated/*.generated.swift",
sourcery + "*.swift"
]
beagleUI.resources = [
"iOS/**/*.xcdatamodeld",
sourcery + "Templates/*"
]
beagleUI.exclude_files = [
source + "/**/Test/**/*.swift",
source + "/**/Tests/**/*.swift",
source + "/**/*Test*.swift"
]
# make sure to declare YogaKit on your Podfile as:
# pod 'YogaKit', :git => '[email protected]:lucasaraujo/yoga.git'
# We need this because we fixed an issue in the original repository and our PR was not merged yet.
beagleUI.frameworks = 'Foundation', 'CoreData'
beagleUI.dependency 'YogaKit'
end
# ――― Beagle Preview ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.subspec 'Preview' do |preview|
source = 'iOS/Sources/Preview/Sources'
preview.source_files = source + '/**/*.swift'
preview.dependency 'Starscream'
end
end