fastlane 2.67.0.beta.20171122010004 → 2.67.0.beta.20171123010003
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: faed8648c0d07430d5f8afd90a47c27b3f8f51e4
|
4
|
+
data.tar.gz: 7020263a7fa146ac6642912d44bcb3e7e9c14da4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32cf62b8aa13a07746d2b868b260f42ca6317003f1b9940c65ac6b7cf20e259117fec6f4759c5813b222a6c13d074de38731ee6d31cd71fa2fc21540f69ec8b9
|
7
|
+
data.tar.gz: 08e5ff21f06841cb4a2a52d83bb980241a7fd4da8e7b9ee487d0ef9ad28b897d21f03488aa965e9d0d0507ed9fb89dca84af19ace8cdd278f1965e37035bc254
|
@@ -15,7 +15,8 @@ _fastlane_complete() {
|
|
15
15
|
|
16
16
|
# parse 'beta' out of 'lane :beta do', etc
|
17
17
|
completions=`cat $file | grep "^\s*lane \:" | awk -F ':' '{print $2}' | awk -F ' ' '{print $1}'`
|
18
|
-
completions="$completions
|
18
|
+
completions="$completions
|
19
|
+
update_fastlane"
|
19
20
|
|
20
21
|
reply=( "${(ps:\n:)completions}" )
|
21
22
|
}
|
@@ -22,6 +22,15 @@ module Fastlane
|
|
22
22
|
print_bundle_exec_warning(is_slow: (Time.now - before_import_time > 3))
|
23
23
|
end
|
24
24
|
|
25
|
+
unless (ENV['LANG'] || "").end_with?("UTF-8") || (ENV['LC_ALL'] || "").end_with?("UTF-8")
|
26
|
+
warn = "WARNING: fastlane requires your locale to be set to UTF-8. To learn more go to https://docs.fastlane.tools/getting-started/ios/setup/#set-up-environment-variables"
|
27
|
+
UI.error(warn)
|
28
|
+
at_exit do
|
29
|
+
# Repeat warning here so users hopefully see it
|
30
|
+
UI.error(warn)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
25
34
|
FastlaneCore::UpdateChecker.start_looking_for_update('fastlane')
|
26
35
|
|
27
36
|
ARGV.unshift("spaceship") if ARGV.first == "spaceauth"
|
@@ -68,7 +68,7 @@ module Fastlane
|
|
68
68
|
puts "==========================================\n".deprecated
|
69
69
|
end
|
70
70
|
|
71
|
-
puts "More information can be found on https://docs.fastlane.tools/actions"
|
71
|
+
puts "More information can be found on https://docs.fastlane.tools/actions/#{filter}"
|
72
72
|
puts ""
|
73
73
|
else
|
74
74
|
puts "Couldn't find action for the given filter.".red
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.67.0.beta.
|
2
|
+
VERSION = '2.67.0.beta.20171123010003'.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.67.0.beta.
|
4
|
+
version: 2.67.0.beta.20171123010003
|
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: 2017-11-
|
18
|
+
date: 2017-11-23 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|