fastlane 1.30.0 → 1.30.1
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 +4 -4
- data/lib/fastlane/actions/carthage.rb +9 -0
- data/lib/fastlane/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d15db74cae230835a543e41c5cbc7e5175705600
|
|
4
|
+
data.tar.gz: 942635ca5ef780b964df05e1f39e4889f1cdb436
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa753780d7156303d1d6f9ec9632fc982fabe890ac785eb881ded4a4b8d3c9bd6132da4c39c614234af6c1f707e4433b95a75f77f5f9f021a9bc5fa99b9c5a19
|
|
7
|
+
data.tar.gz: ae398cdf9a097ca126077db1ee782d3e9337e0d3b1b645d3d88d62248251feab0ecb042d63122afe6277c9165eb27143eb584b1377ea0551a5a8e6dfcd8b2012
|
|
@@ -7,6 +7,7 @@ module Fastlane
|
|
|
7
7
|
cmd << "--use-ssh" if params[:use_ssh]
|
|
8
8
|
cmd << "--use-submodules" if params[:use_submodules]
|
|
9
9
|
cmd << "--no-use-binaries" if params[:use_binaries] == false
|
|
10
|
+
cmd << "--no-build" if params[:no_build] == true
|
|
10
11
|
cmd << "--platform #{params[:platform]}" if params[:platform]
|
|
11
12
|
|
|
12
13
|
Actions.sh(cmd.join(' '))
|
|
@@ -42,6 +43,14 @@ module Fastlane
|
|
|
42
43
|
verify_block: proc do |value|
|
|
43
44
|
raise "Please pass a valid value for use_binaries. Use one of the following: true, false" unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
|
|
44
45
|
end),
|
|
46
|
+
FastlaneCore::ConfigItem.new(key: :no_build,
|
|
47
|
+
env_name: "FL_CARTHAGE_NO_BUILD",
|
|
48
|
+
description: "When bootstrapping Carthage do not build",
|
|
49
|
+
is_string: false,
|
|
50
|
+
optional: true,
|
|
51
|
+
verify_block: proc do |value|
|
|
52
|
+
raise "Please pass a valid value for no_build. Use one of the following: true, false" unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
|
|
53
|
+
end),
|
|
45
54
|
FastlaneCore::ConfigItem.new(key: :platform,
|
|
46
55
|
env_name: "FL_CARTHAGE_PLATFORM",
|
|
47
56
|
description: "Define which platform to build for",
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.30.
|
|
4
|
+
version: 1.30.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -176,7 +176,7 @@ dependencies:
|
|
|
176
176
|
requirements:
|
|
177
177
|
- - ">="
|
|
178
178
|
- !ruby/object:Gem::Version
|
|
179
|
-
version: 0.18.
|
|
179
|
+
version: 0.18.1
|
|
180
180
|
- - "<"
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: 1.0.0
|
|
@@ -186,7 +186,7 @@ dependencies:
|
|
|
186
186
|
requirements:
|
|
187
187
|
- - ">="
|
|
188
188
|
- !ruby/object:Gem::Version
|
|
189
|
-
version: 0.18.
|
|
189
|
+
version: 0.18.1
|
|
190
190
|
- - "<"
|
|
191
191
|
- !ruby/object:Gem::Version
|
|
192
192
|
version: 1.0.0
|