fastlane-plugin-rome 0.2.1 → 0.2.2
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7852106ef9083b6636cf3810c6499b115c8c9b9e
|
|
4
|
+
data.tar.gz: e4c255d1fd9658b5332dce9dac81d1df68cb3830
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84acb9efb1aee0a7e10ae06e47000068d6314855ef547dc315644be16967712c456e457095c436ccf3c688d332052e5c29cee4526f5b657b5cdb8f5d3827f2a0
|
|
7
|
+
data.tar.gz: e8ff5882b2741f06f4d1ca449925ff789e5ee0a987786695864deb82ec0ced99325056085096331375481208cf849da1f514c787df8815e95f65f99d6f098165
|
|
@@ -25,6 +25,7 @@ module Fastlane
|
|
|
25
25
|
cmd << "--platform #{params[:platform]}" if params[:platform]
|
|
26
26
|
cmd << "--cache-prefix #{params[:cacheprefix]}" if params[:cacheprefix]
|
|
27
27
|
cmd << "--print-format #{params[:printformat]}" if params[:printformat]
|
|
28
|
+
cmd << "--no-ignore" if params[:noignore] == true
|
|
28
29
|
cmd << "-v " if params[:verbose]
|
|
29
30
|
|
|
30
31
|
Actions.sh(cmd.join(' '))
|
|
@@ -120,6 +121,16 @@ module Fastlane
|
|
|
120
121
|
UI.user_error!("Please pass a valid value for verbose. Use one of the following: true, false") unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
|
|
121
122
|
end),
|
|
122
123
|
|
|
124
|
+
FastlaneCore::ConfigItem.new(key: :noignore,
|
|
125
|
+
env_name: "FL_ROME_NOIGNORE",
|
|
126
|
+
description: "Ignore the [IgnoreMap] section of a Romefile",
|
|
127
|
+
is_string: false,
|
|
128
|
+
optional: true,
|
|
129
|
+
verify_block: proc do |value|
|
|
130
|
+
UI.user_error!("Please pass a valid value for noignore. Use one of the following: true, false") unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
|
|
131
|
+
UI.user_error!("Requires Rome version '0.13.1.35' or later") if !meet_minimum_version("0.13.1.35")
|
|
132
|
+
end),
|
|
133
|
+
|
|
123
134
|
FastlaneCore::ConfigItem.new(key: :platform,
|
|
124
135
|
env_name: "FL_ROME_PLATFORM",
|
|
125
136
|
description: "Define which platform to build for",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-rome
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- François Benaiteau
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
128
|
rubyforge_project:
|
|
129
|
-
rubygems_version: 2.
|
|
129
|
+
rubygems_version: 2.6.13
|
|
130
130
|
signing_key:
|
|
131
131
|
specification_version: 4
|
|
132
132
|
summary: An S3 cache tool for Carthage
|