fastlane-plugin-rome 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9da7ef20dae2bf83a284d2fe616ef8484c5c49a80c17e2b4c65e6f96abcb2e71
|
|
4
|
+
data.tar.gz: c834d7a931833ffcf2a14065c83e03b9bceacfede1581d9aac9cfdaab385cd07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed77ca48c8850523f68f3210fc4bce3ccbbb73fbedc508274d03d974f14d7c573e5451aaa3563e2b14c63451d956841af440436eb6b167745d33c49520494db1
|
|
7
|
+
data.tar.gz: f33a186f0fd07b275fe793b436ec840154fafe141911541212a7e5435e09b77c51290394972dd8b864c1abe67aca1d6a1f2f4d6a6b08663cfb500d2ff9e3e526
|
|
@@ -26,6 +26,7 @@ module Fastlane
|
|
|
26
26
|
cmd << "--print-format #{params[:printformat]}" if params[:printformat]
|
|
27
27
|
cmd << "--romefile #{params[:romefile]}" if params[:romefile]
|
|
28
28
|
cmd << "--no-ignore" if params[:noignore] == true
|
|
29
|
+
cmd << "--no-skip-current" if params[:noskipcurrent] == true
|
|
29
30
|
cmd << "-v " if params[:verbose]
|
|
30
31
|
|
|
31
32
|
action = Actions.sh(cmd.join(' '))
|
|
@@ -87,6 +88,10 @@ module Fastlane
|
|
|
87
88
|
if cacheprefix != nil
|
|
88
89
|
UI.user_error!("'cacheprefix' option requires Rome version '0.12.0.31' or later") if !meet_minimum_version(binary_path, "0.12.0.31")
|
|
89
90
|
end
|
|
91
|
+
noskipcurrent = params[:noskipcurrent]
|
|
92
|
+
if noskipcurrent != nil
|
|
93
|
+
UI.user_error!("'noskipcurrent' option requires Rome version '0.18.0.51' or later") if !meet_minimum_version(binary_path, "0.18.0.51")
|
|
94
|
+
end
|
|
90
95
|
end
|
|
91
96
|
|
|
92
97
|
def self.available_commands
|
|
@@ -106,11 +111,11 @@ module Fastlane
|
|
|
106
111
|
end
|
|
107
112
|
|
|
108
113
|
def self.authors
|
|
109
|
-
["François Benaiteau"]
|
|
114
|
+
["François Benaiteau", "Tommaso Piazza"]
|
|
110
115
|
end
|
|
111
116
|
|
|
112
117
|
def self.details
|
|
113
|
-
"Rome is a tool that allows developers on Apple platforms to use Amazon's
|
|
118
|
+
"Rome is a tool that allows developers on Apple platforms to use Amazon's S3 and/or others as a shared cache for frameworks built with Carthage."
|
|
114
119
|
end
|
|
115
120
|
|
|
116
121
|
def self.available_options
|
|
@@ -140,7 +145,7 @@ module Fastlane
|
|
|
140
145
|
|
|
141
146
|
FastlaneCore::ConfigItem.new(key: :noignore,
|
|
142
147
|
env_name: "FL_ROME_NOIGNORE",
|
|
143
|
-
description: "Ignore the
|
|
148
|
+
description: "Ignore the `ignoreMap` section of a Romefile",
|
|
144
149
|
is_string: false,
|
|
145
150
|
optional: true,
|
|
146
151
|
verify_block: proc do |value|
|
|
@@ -199,6 +204,14 @@ module Fastlane
|
|
|
199
204
|
optional: true,
|
|
200
205
|
is_string: true),
|
|
201
206
|
|
|
207
|
+
FastlaneCore::ConfigItem.new(key: :noskipcurrent,
|
|
208
|
+
env_name: "FL_ROME_NOSKIPCURRENT",
|
|
209
|
+
description: "Use the `currentMap` section when performing the operation",
|
|
210
|
+
is_string: false,
|
|
211
|
+
optional: true,
|
|
212
|
+
verify_block: proc do |value|
|
|
213
|
+
UI.user_error!("Please pass a valid value for noskipcurrent. Use one of the following: true, false") unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
|
|
214
|
+
end)
|
|
202
215
|
]
|
|
203
216
|
end
|
|
204
217
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-rome
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- François Benaiteau
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-11-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: pry
|