fastlane_core 0.50.2 → 0.50.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b96d82ed677bd4751568e0936cb6b729d8a64e73
|
4
|
+
data.tar.gz: 7e7a3f90bd8de431f1427148a958faf103db97dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2637e750148dd81c2964ae76d62bec4b29ec74f065d45092d5a8f64551edfc5039019f7911748081361b4f225b2df1ca9a100855f60793bdaee935e17ecd3dd
|
7
|
+
data.tar.gz: cad4a1dddec39691cdb6599d076038b784fded7df8bfa78e54036a0e780e86e25f339c495e89df2c1a7d1be2ee80605e102c8046077f897fe5e5071da637379a
|
@@ -33,7 +33,7 @@ module FastlaneCore
|
|
33
33
|
available.split("\n").each do |current|
|
34
34
|
next if current.include? "REVOKED"
|
35
35
|
begin
|
36
|
-
(ids << current.match(/.*\) (
|
36
|
+
(ids << current.match(/.*\) ([[:xdigit:]]*) \".*/)[1])
|
37
37
|
rescue
|
38
38
|
# the last line does not match
|
39
39
|
end
|
@@ -35,7 +35,7 @@ module FastlaneCore
|
|
35
35
|
max_allowed_value_length = max_length - max_key_length - 7
|
36
36
|
rows.map do |e|
|
37
37
|
value = e[1]
|
38
|
-
value = value.truncate(max_allowed_value_length)
|
38
|
+
value = value.to_s.truncate(max_allowed_value_length) unless [true, false].include?(value)
|
39
39
|
[e[0], value]
|
40
40
|
end
|
41
41
|
end
|
@@ -141,7 +141,7 @@ module FastlaneCore
|
|
141
141
|
# Basically this should be used when you actively catch the error
|
142
142
|
# and want to show a nice error message to the user
|
143
143
|
def user_error!(error_message, options = {})
|
144
|
-
options = { show_github_issues:
|
144
|
+
options = { show_github_issues: false }.merge(options)
|
145
145
|
raise FastlaneError.new(show_github_issues: options[:show_github_issues]), error_message.to_s
|
146
146
|
end
|
147
147
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.50.
|
4
|
+
version: 0.50.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -414,7 +414,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
414
414
|
version: '0'
|
415
415
|
requirements: []
|
416
416
|
rubyforge_project:
|
417
|
-
rubygems_version: 2.4.
|
417
|
+
rubygems_version: 2.4.5.1
|
418
418
|
signing_key:
|
419
419
|
specification_version: 4
|
420
420
|
summary: Contains all shared code/dependencies of the fastlane.tools
|