fastlane-plugin-rome 0.3.2 → 0.3.3
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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a207d312790696e774f77c773a5e2f04373ed4faf511ac55043f66942f02a7ce
|
|
4
|
+
data.tar.gz: 7009f3b96cdc79da50f3e797eaadad11f4983dc2e0e5fbe73acc1c9519bb07c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d82edcd8e8b78821f0dbf1c5a78548cc77a8086c069c4e9e667f22ed0036f0d0b90f218246e17c077e609334721a33b340a106524d2900a02de638c9cf1cfa32
|
|
7
|
+
data.tar.gz: 9e2e6fe878d6794f2f7211fda5be73eccf14a7cbab7621628b1743ad1159365e125c2e13645625c5fe3c2817e17117ceee0abc82d5498957902587ef2ca4ce16
|
|
@@ -24,6 +24,7 @@ module Fastlane
|
|
|
24
24
|
cmd << "--platform #{params[:platform]}" if params[:platform]
|
|
25
25
|
cmd << "--cache-prefix #{params[:cacheprefix]}" if params[:cacheprefix]
|
|
26
26
|
cmd << "--print-format #{params[:printformat]}" if params[:printformat]
|
|
27
|
+
cmd << "--romefile #{params[:romefile]}" if params[:romefile]
|
|
27
28
|
cmd << "--no-ignore" if params[:noignore] == true
|
|
28
29
|
cmd << "-v " if params[:verbose]
|
|
29
30
|
|
|
@@ -190,7 +191,13 @@ module Fastlane
|
|
|
190
191
|
env_name: "FL_ROME_PRINT_FORMAT",
|
|
191
192
|
description: "Specify what format to use in the output of the list command. One of 'JSON' or 'Text'. Defaults to 'Text' if omitted",
|
|
192
193
|
optional: true,
|
|
193
|
-
is_string: true)
|
|
194
|
+
is_string: true),
|
|
195
|
+
|
|
196
|
+
FastlaneCore::ConfigItem.new(key: :romefile,
|
|
197
|
+
env_name: "FL_ROME_ROMEFILE",
|
|
198
|
+
description: "The path to the Romefile to use. Defaults to the \"Romefile\" in the current directory",
|
|
199
|
+
optional: true,
|
|
200
|
+
is_string: true),
|
|
194
201
|
|
|
195
202
|
]
|
|
196
203
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
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.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- François Benaiteau
|
|
8
|
+
- Tommaso Piazza
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
12
|
+
date: 2018-08-28 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: pry
|
|
@@ -95,7 +96,9 @@ dependencies:
|
|
|
95
96
|
- !ruby/object:Gem::Version
|
|
96
97
|
version: 2.22.0
|
|
97
98
|
description:
|
|
98
|
-
email:
|
|
99
|
+
email:
|
|
100
|
+
- francois.benaiteau@gmail.com
|
|
101
|
+
- tommaso.piazza@gmail.com
|
|
99
102
|
executables: []
|
|
100
103
|
extensions: []
|
|
101
104
|
extra_rdoc_files: []
|
|
@@ -106,7 +109,7 @@ files:
|
|
|
106
109
|
- lib/fastlane/plugin/rome/actions/rome_action.rb
|
|
107
110
|
- lib/fastlane/plugin/rome/helper/rome_helper.rb
|
|
108
111
|
- lib/fastlane/plugin/rome/version.rb
|
|
109
|
-
homepage: https://github.com/
|
|
112
|
+
homepage: https://github.com/OpenShelter/fastlane-plugin-rome
|
|
110
113
|
licenses:
|
|
111
114
|
- MIT
|
|
112
115
|
metadata: {}
|
|
@@ -126,8 +129,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
129
|
version: '0'
|
|
127
130
|
requirements: []
|
|
128
131
|
rubyforge_project:
|
|
129
|
-
rubygems_version: 2.
|
|
132
|
+
rubygems_version: 2.7.7
|
|
130
133
|
signing_key:
|
|
131
134
|
specification_version: 4
|
|
132
|
-
summary:
|
|
135
|
+
summary: A cache tool for Carthage
|
|
133
136
|
test_files: []
|