fastlane_core 0.36.7 → 0.36.8

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: a58b8eb2829c478608f6cb0af3327d62679643d6
4
- data.tar.gz: d2af2134d20ba7a068087ef99196522c2e2790c1
3
+ metadata.gz: 3df20c29b3701692f89ad3418ab3f9933735b81a
4
+ data.tar.gz: bdbe065e873eaade6db30af2d0654c0b5278a204
5
5
  SHA512:
6
- metadata.gz: 8826c880f603b461eb065011c61db790e9763cdd8e35c9a447013901c0634c010cc03f806cf9b5f74688b2ff7da2df9d0b96bebfc17d134f2ccd90ef9b03277d
7
- data.tar.gz: 9456075a321b5e117c0ef8f7ab3ad6c157c498c9d0d35ced90cfe4f76a301978394214ad6dcd26d7480f26d8ac164e0482458273aa0827b34a492ba119743bb8
6
+ metadata.gz: f689d3b9a0dc4fcf942cfc12da2ba686f4625da8a4126f8b51908ffd6532cb649db0860def61aea1ccb5e2892a3e2ca4df30f91bf1b79e5d5ad12f079f3a3490
7
+ data.tar.gz: d1119e07d5bc52350311171a015c02e2df4ca36ff261f32dca289e951336029800a6f1452bec3893c0ceb4d68aa6f3925a78f827b5e647964a7c6984e6b7253e
data/README.md CHANGED
@@ -1,24 +1,24 @@
1
1
  <h3 align="center">
2
- <a href="https://github.com/fastlane/playground/tree/master/fastlane">
2
+ <a href="https://github.com/fastlane/fastlane">
3
3
  <img src="assets/fastlane.png" width="150" />
4
4
  <br />
5
5
  fastlane
6
6
  </a>
7
7
  </h3>
8
8
  <p align="center">
9
- <a href="https://github.com/fastlane/playground/tree/master/deliver">deliver</a> &bull;
10
- <a href="https://github.com/fastlane/playground/tree/master/snapshot">snapshot</a> &bull;
11
- <a href="https://github.com/fastlane/playground/tree/master/frameit">frameit</a> &bull;
12
- <a href="https://github.com/fastlane/playground/tree/master/pem">pem</a> &bull;
13
- <a href="https://github.com/fastlane/playground/tree/master/sigh">sigh</a> &bull;
14
- <a href="https://github.com/fastlane/playground/tree/master/produce">produce</a> &bull;
15
- <a href="https://github.com/fastlane/playground/tree/master/cert">cert</a> &bull;
16
- <a href="https://github.com/fastlane/playground/tree/master/spaceship">spaceship</a> &bull;
17
- <a href="https://github.com/fastlane/playground/tree/master/pilot">pilot</a> &bull;
9
+ <a href="https://github.com/fastlane/deliver">deliver</a> &bull;
10
+ <a href="https://github.com/fastlane/snapshot">snapshot</a> &bull;
11
+ <a href="https://github.com/fastlane/frameit">frameit</a> &bull;
12
+ <a href="https://github.com/fastlane/pem">pem</a> &bull;
13
+ <a href="https://github.com/fastlane/sigh">sigh</a> &bull;
14
+ <a href="https://github.com/fastlane/produce">produce</a> &bull;
15
+ <a href="https://github.com/fastlane/cert">cert</a> &bull;
16
+ <a href="https://github.com/fastlane/spaceship">spaceship</a> &bull;
17
+ <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
- <a href="https://github.com/fastlane/playground/tree/master/gym">gym</a> &bull;
20
- <a href="https://github.com/fastlane/playground/tree/master/scan">scan</a> &bull;
21
- <a href="https://github.com/fastlane/playground/tree/master/match">match</a>
19
+ <a href="https://github.com/fastlane/gym">gym</a> &bull;
20
+ <a href="https://github.com/fastlane/scan">scan</a> &bull;
21
+ <a href="https://github.com/fastlane/match">match</a>
22
22
  </p>
23
23
  -------
24
24
 
@@ -11,9 +11,11 @@ module FastlaneCore
11
11
  end
12
12
 
13
13
  # Legacy Method, use `installed?` instead
14
+ # rubocop:disable Style/PredicateName
14
15
  def self.is_installed?(path)
15
16
  installed?(path)
16
17
  end
18
+ # rubocop:enable Style/PredicateName
17
19
 
18
20
  def self.installed_identies
19
21
  install_wwdr_certificate unless wwdr_certificate_installed?
@@ -59,6 +59,9 @@ module FastlaneCore
59
59
  end
60
60
  Process.wait(pid)
61
61
  end
62
+ rescue Errno::EIO
63
+ # This is expected on some linux systems, that indicates that the subcommand finished
64
+ # and we kept trying to read, ignore it
62
65
  rescue => ex
63
66
  # This could happen when the environment is wrong:
64
67
  # > invalid byte sequence in US-ASCII (ArgumentError)
@@ -73,6 +73,7 @@ module FastlaneCore
73
73
  end
74
74
 
75
75
  # Use Helper.test? and Helper.ci? instead (legacy calls)
76
+ # rubocop:disable Style/PredicateName
76
77
  def self.is_test?
77
78
  self.test?
78
79
  end
@@ -84,6 +85,7 @@ module FastlaneCore
84
85
  def self.is_mac?
85
86
  self.mac?
86
87
  end
88
+ # rubocop:enable Style/PredicateName
87
89
 
88
90
  # Do we want to disable the colored output?
89
91
  def self.colors_disabled?
@@ -87,6 +87,7 @@ module FastlaneCore
87
87
 
88
88
  # Let the user select a scheme
89
89
  # Use a scheme containing the preferred_to_include string when multiple schemes were found
90
+ # rubocop:disable Metrics/AbcSize
90
91
  def select_scheme(preferred_to_include: nil)
91
92
  if options[:scheme].to_s.length > 0
92
93
  # Verify the scheme is available
@@ -125,6 +126,7 @@ module FastlaneCore
125
126
  raise "No Schemes found".red
126
127
  end
127
128
  end
129
+ # rubocop:enable Metrics/AbcSize
128
130
 
129
131
  # Get all available configurations in an array
130
132
  def configurations
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.36.7"
2
+ VERSION = "0.36.8".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.36.7
4
+ version: 0.36.8
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-02-24 00:00:00.000000000 Z
11
+ date: 2016-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -384,7 +384,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
384
384
  version: '0'
385
385
  requirements: []
386
386
  rubyforge_project:
387
- rubygems_version: 2.4.0
387
+ rubygems_version: 2.4.6
388
388
  signing_key:
389
389
  specification_version: 4
390
390
  summary: Contains all shared code/dependencies of the fastlane.tools