fastlane 2.127.0.beta.20190701200019 → 2.127.0.beta.20190703200032
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/version.rb +1 -1
- data/pilot/lib/pilot/options.rb +12 -2
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdefd5afbb47d7f3f78bbbd557a6fe31d2d11906
|
4
|
+
data.tar.gz: 66777234fc371c3b1242841a3c876325194ffc23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cb57c077e1e0e002b559d348978ea935c5388e5ad0ee460c6407f78c70e0dd26ab77901f10def0f7402b5d34f1f74e23a18bd8e83567f27294709b0b9b12613
|
7
|
+
data.tar.gz: d6358dd31accb5a3f11a7bc32002f9c1f0b6d71b379763e906eeea17bebd453d2bbb187665501acdec730742fd56397324b8d5dd7bef0148fb4add0bde280a0e
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.127.0.beta.
|
2
|
+
VERSION = '2.127.0.beta.20190703200032'.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
|
data/pilot/lib/pilot/options.rb
CHANGED
@@ -38,11 +38,21 @@ module Pilot
|
|
38
38
|
FastlaneCore::ConfigItem.new(key: :apple_id,
|
39
39
|
short_option: "-p",
|
40
40
|
env_name: "PILOT_APPLE_ID",
|
41
|
-
description: "
|
41
|
+
description: "Apple ID property in the App Information section in App Store Connect",
|
42
42
|
optional: true,
|
43
43
|
code_gen_sensitive: true,
|
44
44
|
default_value: ENV["TESTFLIGHT_APPLE_ID"],
|
45
|
-
default_value_dynamic: true
|
45
|
+
default_value_dynamic: true,
|
46
|
+
type: String,
|
47
|
+
verify_block: proc do |value|
|
48
|
+
error_message = "`apple_id` value is incorrect. The correct value should be taken from Apple ID property in the App Information section in App Store Connect."
|
49
|
+
|
50
|
+
# Validate if the value is not an email address
|
51
|
+
UI.user_error!(error_message) if value =~ /\A[\w+\-.]+@[a-z\d\-]+(\.[a-z\d\-]+)*\.[a-z]+\z/i
|
52
|
+
|
53
|
+
# Validate if the value is not a bundle identifier
|
54
|
+
UI.user_error!(error_message) if value =~ /^[A-Za-x]{2,6}((?!-)\.[A-Za-z0-9-]{1,63}(?<!-))+$/i
|
55
|
+
end),
|
46
56
|
FastlaneCore::ConfigItem.new(key: :ipa,
|
47
57
|
short_option: "-i",
|
48
58
|
optional: true,
|
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.127.0.beta.
|
4
|
+
version: 2.127.0.beta.20190703200032
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Ellis
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-07-
|
30
|
+
date: 2019-07-03 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1735,23 +1735,23 @@ metadata:
|
|
1735
1735
|
post_install_message:
|
1736
1736
|
rdoc_options: []
|
1737
1737
|
require_paths:
|
1738
|
+
- deliver/lib
|
1739
|
+
- frameit/lib
|
1740
|
+
- screengrab/lib
|
1741
|
+
- cert/lib
|
1742
|
+
- credentials_manager/lib
|
1738
1743
|
- sigh/lib
|
1739
|
-
- precheck/lib
|
1740
1744
|
- fastlane/lib
|
1741
|
-
- credentials_manager/lib
|
1742
|
-
- supply/lib
|
1743
|
-
- pem/lib
|
1744
|
-
- fastlane_core/lib
|
1745
|
-
- screengrab/lib
|
1746
1745
|
- spaceship/lib
|
1747
|
-
- scan/lib
|
1748
|
-
- match/lib
|
1749
1746
|
- pilot/lib
|
1750
|
-
- frameit/lib
|
1751
|
-
- cert/lib
|
1752
|
-
- deliver/lib
|
1753
1747
|
- produce/lib
|
1754
1748
|
- gym/lib
|
1749
|
+
- fastlane_core/lib
|
1750
|
+
- match/lib
|
1751
|
+
- precheck/lib
|
1752
|
+
- supply/lib
|
1753
|
+
- pem/lib
|
1754
|
+
- scan/lib
|
1755
1755
|
- snapshot/lib
|
1756
1756
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1757
1757
|
requirements:
|