fastlane 2.132.0.beta.20190926200023 → 2.132.0.beta.20190927200017
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/frameit/lib/frameit/screenshot.rb +4 -0
- data/match/lib/match/options.rb +1 -1
- data/match/lib/match/storage/git_storage.rb +1 -1
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 139fe84cbde374a79491c850e161d19a6f4d2d9b
|
4
|
+
data.tar.gz: 92ea684665ed38418c4deed50339da1c4894bc13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e853026077aa594a7c3248a522318b95cda19d3b39ee8ad0cd94ab803c414818995043e63a0d0fc42abdc6ec1efdbbc3f49bb68a908fbdd099b59ba7fef6a49b
|
7
|
+
data.tar.gz: 209b5dec98bc113a3a0cd4d0cc56696d0917e7cfc290fc2d8b8e18636aceeb2efc291e17f80b6eca5a4955fcb5d438d16cbf4a100d4276d45a4143e1358992e2
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.132.0.beta.
|
2
|
+
VERSION = '2.132.0.beta.20190927200017'.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
|
@@ -45,6 +45,10 @@ module Frameit
|
|
45
45
|
return 'iPhone 4'
|
46
46
|
when sizes::IOS_IPAD
|
47
47
|
return 'iPad Air 2'
|
48
|
+
when sizes::IOS_IPAD_10_5
|
49
|
+
return 'iPad Pro (10.5-inch)'
|
50
|
+
when sizes::IOS_IPAD_11
|
51
|
+
return 'iPad Pro (11-inch)'
|
48
52
|
when sizes::IOS_IPAD_PRO
|
49
53
|
return 'iPad Pro'
|
50
54
|
when sizes::IOS_IPAD_PRO_12_9
|
data/match/lib/match/options.rb
CHANGED
@@ -118,7 +118,7 @@ module Match
|
|
118
118
|
FastlaneCore::ConfigItem.new(key: :git_basic_authorization,
|
119
119
|
env_name: "MATCH_GIT_BASIC_AUTHORIZATION",
|
120
120
|
sensitive: true,
|
121
|
-
description: "Use a basic authorization header to access the git repo (e.g.: access via HTTPS, GitHub Actions, etc)",
|
121
|
+
description: "Use a basic authorization header to access the git repo (e.g.: access via HTTPS, GitHub Actions, etc), usually a string in Base64",
|
122
122
|
optional: true,
|
123
123
|
default_value: nil),
|
124
124
|
|
@@ -69,7 +69,7 @@ module Match
|
|
69
69
|
self.working_directory = Dir.mktmpdir
|
70
70
|
|
71
71
|
command = "git clone #{self.git_url.shellescape} #{self.working_directory.shellescape}"
|
72
|
-
command << " -c http.extraheader='AUTHORIZATION: basic #{self.git_basic_authorization
|
72
|
+
command << " -c http.extraheader='AUTHORIZATION: basic #{self.git_basic_authorization}'" unless self.git_basic_authorization.nil?
|
73
73
|
|
74
74
|
if self.shallow_clone
|
75
75
|
command << " --depth 1 --no-single-branch"
|
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.132.0.beta.
|
4
|
+
version: 2.132.0.beta.20190927200017
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew McBurney
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-09-
|
30
|
+
date: 2019-09-27 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1747,24 +1747,24 @@ metadata:
|
|
1747
1747
|
post_install_message:
|
1748
1748
|
rdoc_options: []
|
1749
1749
|
require_paths:
|
1750
|
-
-
|
1751
|
-
- precheck/lib
|
1750
|
+
- pem/lib
|
1752
1751
|
- screengrab/lib
|
1753
1752
|
- credentials_manager/lib
|
1754
|
-
-
|
1755
|
-
-
|
1756
|
-
- frameit/lib
|
1757
|
-
- snapshot/lib
|
1758
|
-
- spaceship/lib
|
1759
|
-
- sigh/lib
|
1760
|
-
- pilot/lib
|
1761
|
-
- fastlane/lib
|
1753
|
+
- supply/lib
|
1754
|
+
- deliver/lib
|
1762
1755
|
- gym/lib
|
1763
1756
|
- match/lib
|
1757
|
+
- snapshot/lib
|
1758
|
+
- spaceship/lib
|
1764
1759
|
- scan/lib
|
1760
|
+
- frameit/lib
|
1761
|
+
- fastlane_core/lib
|
1762
|
+
- produce/lib
|
1763
|
+
- sigh/lib
|
1765
1764
|
- cert/lib
|
1766
|
-
-
|
1767
|
-
-
|
1765
|
+
- fastlane/lib
|
1766
|
+
- precheck/lib
|
1767
|
+
- pilot/lib
|
1768
1768
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1769
1769
|
requirements:
|
1770
1770
|
- - ">="
|