fastlane_core 0.36.7 → 0.36.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -13
- data/lib/fastlane_core/cert_checker.rb +2 -0
- data/lib/fastlane_core/command_executor.rb +3 -0
- data/lib/fastlane_core/helper.rb +2 -0
- data/lib/fastlane_core/project.rb +2 -0
- data/lib/fastlane_core/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3df20c29b3701692f89ad3418ab3f9933735b81a
|
4
|
+
data.tar.gz: bdbe065e873eaade6db30af2d0654c0b5278a204
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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/
|
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/
|
10
|
-
<a href="https://github.com/fastlane/
|
11
|
-
<a href="https://github.com/fastlane/
|
12
|
-
<a href="https://github.com/fastlane/
|
13
|
-
<a href="https://github.com/fastlane/
|
14
|
-
<a href="https://github.com/fastlane/
|
15
|
-
<a href="https://github.com/fastlane/
|
16
|
-
<a href="https://github.com/fastlane/
|
17
|
-
<a href="https://github.com/fastlane/
|
9
|
+
<a href="https://github.com/fastlane/deliver">deliver</a> •
|
10
|
+
<a href="https://github.com/fastlane/snapshot">snapshot</a> •
|
11
|
+
<a href="https://github.com/fastlane/frameit">frameit</a> •
|
12
|
+
<a href="https://github.com/fastlane/pem">pem</a> •
|
13
|
+
<a href="https://github.com/fastlane/sigh">sigh</a> •
|
14
|
+
<a href="https://github.com/fastlane/produce">produce</a> •
|
15
|
+
<a href="https://github.com/fastlane/cert">cert</a> •
|
16
|
+
<a href="https://github.com/fastlane/spaceship">spaceship</a> •
|
17
|
+
<a href="https://github.com/fastlane/pilot">pilot</a> •
|
18
18
|
<a href="https://github.com/fastlane/boarding">boarding</a> •
|
19
|
-
<a href="https://github.com/fastlane/
|
20
|
-
<a href="https://github.com/fastlane/
|
21
|
-
<a href="https://github.com/fastlane/
|
19
|
+
<a href="https://github.com/fastlane/gym">gym</a> •
|
20
|
+
<a href="https://github.com/fastlane/scan">scan</a> •
|
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)
|
data/lib/fastlane_core/helper.rb
CHANGED
@@ -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
|
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.
|
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-
|
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.
|
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
|