fastlane 2.72.0 → 2.73.0.beta.20180103010003
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/fastlane/helper/sh_helper.rb +7 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- metadata +17 -23
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/assets/.DS_Store +0 -0
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/docs/.DS_Store +0 -0
- data/fastlane/lib/fastlane/setup/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c58d8c4751c6c782e6c8747df9b5c47a22964184
|
4
|
+
data.tar.gz: f6bfdc72d2fb2a44b6f7c2f79c599fb9bef1b431
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d0f70dc3d1ba90068a1120d66c7be5e0bd96231e55b219abcabfdfcd2e67dd56a978027490dea833bdb0195d9397b955a26ce294beeab8d5e19c1747b742bc7
|
7
|
+
data.tar.gz: 26074479d7b06537f18323f15d5783278c947e23e6d298bceb92deb3cfa2eb3556043ca943c5ebbecfa795644ac7d8954f30659c98a7aa4afb5bb7b3cd2b413f
|
@@ -24,6 +24,7 @@ module Fastlane
|
|
24
24
|
# @yieldparam [Process::Status] status A Process::Status indicating the status of the completed command
|
25
25
|
# @yieldparam [String] result The complete output to stdout and stderr of the completed command
|
26
26
|
# @yieldparam [String] cmd A shell command equivalent to the arguments passed
|
27
|
+
# rubocop: disable Metrics/PerceivedComplexity
|
27
28
|
def self.sh_control_output(*command, print_command: true, print_command_output: true, error_callback: nil)
|
28
29
|
print_command = print_command_output = true if $troubleshoot
|
29
30
|
# Set the encoding first, the user might have set it wrong
|
@@ -31,13 +32,17 @@ module Fastlane
|
|
31
32
|
Encoding.default_external = Encoding::UTF_8
|
32
33
|
Encoding.default_internal = Encoding::UTF_8
|
33
34
|
|
35
|
+
# Workaround to support previous Fastlane syntax.
|
36
|
+
# This has some limitations. For example, it requires the caller to shell escape
|
37
|
+
# everything because of usages like ["ls -la", "/tmp"] instead of ["ls", "-la", "/tmp"].
|
38
|
+
command = [command.first.join(" ")] if command.length == 1 && command.first.kind_of?(Array)
|
39
|
+
|
34
40
|
shell_command = shell_command_from_args(*command)
|
35
41
|
UI.command(shell_command) if print_command
|
36
42
|
|
37
43
|
result = ''
|
38
44
|
exit_status = nil
|
39
45
|
if Helper.sh_enabled?
|
40
|
-
|
41
46
|
# The argument list is passed directly to Open3.popen2e, which
|
42
47
|
# handles the variadic argument list in the same way as Kernel#spawn.
|
43
48
|
# (http://ruby-doc.org/core-2.4.2/Kernel.html#method-i-spawn) or
|
@@ -92,6 +97,7 @@ module Fastlane
|
|
92
97
|
Encoding.default_external = previous_encoding.first
|
93
98
|
Encoding.default_internal = previous_encoding.last
|
94
99
|
end
|
100
|
+
# rubocop: enable Metrics/PerceivedComplexity
|
95
101
|
|
96
102
|
# Used to produce a shell command string from a list of arguments that may
|
97
103
|
# be passed to methods such as Kernel#system, Kernel#spawn and Open3.popen2e
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.
|
2
|
+
VERSION = '2.73.0.beta.20180103010003'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.73.0.beta.20180103010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2018-01-
|
18
|
+
date: 2018-01-03 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -855,8 +855,6 @@ files:
|
|
855
855
|
- deliver/lib/deliver/upload_price_tier.rb
|
856
856
|
- deliver/lib/deliver/upload_screenshots.rb
|
857
857
|
- fastlane/README.md
|
858
|
-
- fastlane/lib/.DS_Store
|
859
|
-
- fastlane/lib/assets/.DS_Store
|
860
858
|
- fastlane/lib/assets/ActionDetails.md.erb
|
861
859
|
- fastlane/lib/assets/Actions.md.erb
|
862
860
|
- fastlane/lib/assets/AppfileTemplate
|
@@ -876,10 +874,8 @@ files:
|
|
876
874
|
- fastlane/lib/assets/s3_plist_template.erb
|
877
875
|
- fastlane/lib/assets/s3_version_template.erb
|
878
876
|
- fastlane/lib/fastlane.rb
|
879
|
-
- fastlane/lib/fastlane/.DS_Store
|
880
877
|
- fastlane/lib/fastlane/action.rb
|
881
878
|
- fastlane/lib/fastlane/action_collector.rb
|
882
|
-
- fastlane/lib/fastlane/actions/.DS_Store
|
883
879
|
- fastlane/lib/fastlane/actions/README.md
|
884
880
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
885
881
|
- fastlane/lib/fastlane/actions/adb.rb
|
@@ -932,7 +928,6 @@ files:
|
|
932
928
|
- fastlane/lib/fastlane/actions/deliver.rb
|
933
929
|
- fastlane/lib/fastlane/actions/deploygate.rb
|
934
930
|
- fastlane/lib/fastlane/actions/device_grid/README.md
|
935
|
-
- fastlane/lib/fastlane/actions/docs/.DS_Store
|
936
931
|
- fastlane/lib/fastlane/actions/docs/cert.md
|
937
932
|
- fastlane/lib/fastlane/actions/docs/deliver.md
|
938
933
|
- fastlane/lib/fastlane/actions/docs/frameit.md
|
@@ -1167,7 +1162,6 @@ files:
|
|
1167
1162
|
- fastlane/lib/fastlane/server/command_executor.rb
|
1168
1163
|
- fastlane/lib/fastlane/server/socket_server.rb
|
1169
1164
|
- fastlane/lib/fastlane/server/socket_server_action_command_executor.rb
|
1170
|
-
- fastlane/lib/fastlane/setup/.DS_Store
|
1171
1165
|
- fastlane/lib/fastlane/setup/crashlytics_beta.rb
|
1172
1166
|
- fastlane/lib/fastlane/setup/crashlytics_beta_command_line_handler.rb
|
1173
1167
|
- fastlane/lib/fastlane/setup/crashlytics_beta_info.rb
|
@@ -1559,24 +1553,24 @@ metadata:
|
|
1559
1553
|
post_install_message:
|
1560
1554
|
rdoc_options: []
|
1561
1555
|
require_paths:
|
1562
|
-
-
|
1563
|
-
-
|
1564
|
-
- deliver/lib
|
1565
|
-
- fastlane/lib
|
1566
|
-
- fastlane_core/lib
|
1567
|
-
- frameit/lib
|
1568
|
-
- gym/lib
|
1556
|
+
- supply/lib
|
1557
|
+
- screengrab/lib
|
1569
1558
|
- match/lib
|
1570
|
-
- pem/lib
|
1571
|
-
- pilot/lib
|
1572
1559
|
- precheck/lib
|
1560
|
+
- sigh/lib
|
1573
1561
|
- produce/lib
|
1574
1562
|
- scan/lib
|
1575
|
-
-
|
1576
|
-
- sigh/lib
|
1563
|
+
- gym/lib
|
1577
1564
|
- snapshot/lib
|
1565
|
+
- frameit/lib
|
1566
|
+
- fastlane/lib
|
1567
|
+
- cert/lib
|
1568
|
+
- pilot/lib
|
1578
1569
|
- spaceship/lib
|
1579
|
-
-
|
1570
|
+
- credentials_manager/lib
|
1571
|
+
- deliver/lib
|
1572
|
+
- fastlane_core/lib
|
1573
|
+
- pem/lib
|
1580
1574
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1581
1575
|
requirements:
|
1582
1576
|
- - ">="
|
@@ -1584,12 +1578,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1584
1578
|
version: 2.0.0
|
1585
1579
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1586
1580
|
requirements:
|
1587
|
-
- - "
|
1581
|
+
- - ">"
|
1588
1582
|
- !ruby/object:Gem::Version
|
1589
|
-
version:
|
1583
|
+
version: 1.3.1
|
1590
1584
|
requirements: []
|
1591
1585
|
rubyforge_project:
|
1592
|
-
rubygems_version: 2.
|
1586
|
+
rubygems_version: 2.4.5.1
|
1593
1587
|
signing_key:
|
1594
1588
|
specification_version: 4
|
1595
1589
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
data/fastlane/lib/.DS_Store
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|