fastlane 2.114.0.beta.20190114200053 → 2.114.0.beta.20190115200110

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: 5e1929403a8eb68107c2a99907ec1a34330932bf
4
- data.tar.gz: ec72afd0ee6a4f30fe00cb4e4657290909961fb8
3
+ metadata.gz: ce412e8b3e2f6f853fb84786b51b5715e971769a
4
+ data.tar.gz: 4cd640aa23816cc6b328979bb7e029f199c037b2
5
5
  SHA512:
6
- metadata.gz: b0859653605915d2878298d64bb19a9d58c37ab36d73b8acd0addf9981f2ce98746f3766cf73c0c796761b94b08c36c022daf871601c05e83c75773e771a515c
7
- data.tar.gz: 44694dd8f2ea7ac86019aba921a95a6b9560e121a3408600a9dc094b72652279c9f67e2c3449b29a49dfeec7d6fb08f21d2335067905f385a9d77b68228bc9ce
6
+ metadata.gz: 7f2d02755278043cc75b02eaaf0984131fafc84a7887f3b04bfbba267be04ae4e178dbab5f6207077addef3ccce5c6ce4002c27b0857a3e8993e2f840345868b
7
+ data.tar.gz: f3e8e389e1c76bb3f68ad90948ebf6273e2b06f3c2841e9a8169061a83d353d6636e113fc0e46bb4f8ca4a7a35954fc6bef72cdc4cc63467a206badcb398a162
@@ -107,7 +107,7 @@ fastlane produce associate_group -a com.krausefx.app group.krausefx
107
107
  If you want to create a new iCloud Container:
108
108
 
109
109
  ```no-highlight
110
- fastlane produce cloud_container -ci iCloud.com.krausefx.app -n "Example iCloud Container"
110
+ fastlane produce cloud_container -g iCloud.com.krausefx.app -n "Example iCloud Container"
111
111
  ```
112
112
 
113
113
  If you want to associate an app with an iCloud Container:
@@ -16,6 +16,10 @@ module Fastlane
16
16
  ARGV.include?("init")
17
17
  end
18
18
 
19
+ def utf8_locale?
20
+ (ENV['LANG'] || "").end_with?("UTF-8", "utf8") || (ENV['LC_ALL'] || "").end_with?("UTF-8", "utf8") || (FastlaneCore::CommandExecutor.which('locale') && `locale charmap`.strip == "UTF-8")
21
+ end
22
+
19
23
  def take_off
20
24
  before_import_time = Time.now
21
25
 
@@ -45,7 +49,8 @@ module Fastlane
45
49
  print_bundle_exec_warning(is_slow: (Time.now - before_import_time > 3))
46
50
  end
47
51
 
48
- unless (ENV['LANG'] || "").end_with?("UTF-8") || (ENV['LC_ALL'] || "").end_with?("UTF-8")
52
+ # Try to check UTF-8 with `locale`, fallback to environment variables
53
+ unless utf8_locale?
49
54
  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"
50
55
  UI.error(warn)
51
56
  at_exit do
@@ -18,7 +18,7 @@ module Fastlane
18
18
  File.write(path, xml)
19
19
  rescue => ex
20
20
  UI.error(ex)
21
- UI.error("Couldn't save report.xml at path '#{File.expand_path(output_path)}', make sure you have write access to the containing directory.")
21
+ UI.error("Couldn't save report.xml at path '#{File.expand_path(path)}', make sure you have write access to the containing directory.")
22
22
  end
23
23
 
24
24
  return path
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.114.0.beta.20190114200053'.freeze
2
+ VERSION = '2.114.0.beta.20190115200110'.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.114.0.beta.20190114200053
4
+ version: 2.114.0.beta.20190115200110
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Natchev
@@ -27,7 +27,7 @@ authors:
27
27
  autorequire:
28
28
  bindir: bin
29
29
  cert_chain: []
30
- date: 2019-01-14 00:00:00.000000000 Z
30
+ date: 2019-01-15 00:00:00.000000000 Z
31
31
  dependencies:
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: slack-notifier
@@ -1682,24 +1682,24 @@ metadata:
1682
1682
  post_install_message:
1683
1683
  rdoc_options: []
1684
1684
  require_paths:
1685
- - snapshot/lib
1686
- - supply/lib
1687
- - deliver/lib
1688
- - fastlane/lib
1689
- - pem/lib
1690
- - pilot/lib
1691
- - spaceship/lib
1685
+ - frameit/lib
1686
+ - precheck/lib
1692
1687
  - gym/lib
1693
- - cert/lib
1694
- - credentials_manager/lib
1688
+ - deliver/lib
1695
1689
  - produce/lib
1696
- - match/lib
1690
+ - snapshot/lib
1697
1691
  - sigh/lib
1692
+ - screengrab/lib
1693
+ - pilot/lib
1698
1694
  - fastlane_core/lib
1699
- - precheck/lib
1695
+ - supply/lib
1696
+ - match/lib
1697
+ - fastlane/lib
1698
+ - cert/lib
1700
1699
  - scan/lib
1701
- - screengrab/lib
1702
- - frameit/lib
1700
+ - spaceship/lib
1701
+ - pem/lib
1702
+ - credentials_manager/lib
1703
1703
  required_ruby_version: !ruby/object:Gem::Requirement
1704
1704
  requirements:
1705
1705
  - - ">="