fastlane-plugin-rome 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60761c7ddf401c8f43dadcdace71af540364b3d6
4
- data.tar.gz: d591325859a05153180814cc480df5038a1d5035
3
+ metadata.gz: 7852106ef9083b6636cf3810c6499b115c8c9b9e
4
+ data.tar.gz: e4c255d1fd9658b5332dce9dac81d1df68cb3830
5
5
  SHA512:
6
- metadata.gz: 1c09195aec522c28eed550a17bb328621859be1d050a28a86baff0ff0ff19f7c60dc49fd46448113df9fb8e1dca3fe04d51d0dcd6450bbcfd8d618a082128f52
7
- data.tar.gz: e2538cd5d20ac21a925a7416c3cbcfceee962bd4ee5b4466ef6282d018a696d43c9d5275a7d9009d8d4de8bdf8c007f59c23b9b090d1dda6038761859528b8cc
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",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Rome
3
- VERSION = "0.2.1"
3
+ VERSION = "0.2.2"
4
4
  end
5
5
  end
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.1
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: 2017-10-24 00:00:00.000000000 Z
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.5.1
129
+ rubygems_version: 2.6.13
130
130
  signing_key:
131
131
  specification_version: 4
132
132
  summary: An S3 cache tool for Carthage