fastlane_core 0.50.2 → 0.50.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
2
  SHA1:
3
- metadata.gz: 83ecfa84033ebbac3c2acac04b5a3bcba6f82be0
4
- data.tar.gz: 89da2192d68c763e2ad314b9e4f3df1973744b16
3
+ metadata.gz: b96d82ed677bd4751568e0936cb6b729d8a64e73
4
+ data.tar.gz: 7e7a3f90bd8de431f1427148a958faf103db97dc
5
5
  SHA512:
6
- metadata.gz: 68c91802fbed78ba7ac7c7cf25ca561b6037155887c7936ffc083d5a2753fabd2a067003196fc0dc17d2da65f0c5b86d53e0d3b17d1a930cb359b21d2cdbe51e
7
- data.tar.gz: 1b2183471315cda39775344baa4ba31d4373066634be9f6b23f7bf055c32a8336075263332ca9709a39c4ff4a4d6ae4a65b39496899381ac99161f18434c363c
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(/.*\) (.*) \".*/)[1])
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) if value.kind_of? String
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: true }.merge(options)
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
 
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.50.2".freeze
2
+ VERSION = "0.50.3".freeze
3
3
  end
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.2
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 00:00:00.000000000 Z
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.6
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