fastlane 2.29.0.beta.20170509010055 → 2.29.0
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 +4 -4
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/match/lib/match/change_password.rb +8 -1
- data/match/lib/match/commands_generator.rb +4 -1
- data/match/lib/match/git_helper.rb +14 -1
- data/match/lib/match/nuke.rb +7 -1
- data/snapshot/lib/assets/SnapfileTemplate +2 -2
- data/snapshot/lib/snapshot/detect_values.rb +2 -2
- data/snapshot/lib/snapshot/reports_generator.rb +4 -4
- metadata +16 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2d6217752222539765f18e46a3582ad5a321161
|
4
|
+
data.tar.gz: 221fa664a19e757b4afea97366750538d5a93c1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 526b2ce145766d25900135abb2167722cf2a2d11570fed52b03d345262dceabbf231a91f0e062923b4efeb3b8cbb7124b2d2cff7a27eeef8589df981524c87b7
|
7
|
+
data.tar.gz: 27ac8cc060cd9968f0ec44c291bd99b28934d8b1cd4782088fd00b61c6f4cb8e124c153b0107d19901dfd64c4f327c9f6827501f97fc5767de608a5fc2712f4f
|
@@ -6,7 +6,14 @@ module Match
|
|
6
6
|
to ||= ChangePassword.ask_password(message: "New passphrase for Git Repo: ", confirm: false)
|
7
7
|
from ||= ChangePassword.ask_password(message: "Old passphrase for Git Repo: ", confirm: true)
|
8
8
|
GitHelper.clear_changes
|
9
|
-
workspace = GitHelper.clone(params[:git_url],
|
9
|
+
workspace = GitHelper.clone(params[:git_url],
|
10
|
+
params[:shallow_clone],
|
11
|
+
manual_password: from,
|
12
|
+
skip_docs: params[:skip_docs],
|
13
|
+
branch: params[:git_branch],
|
14
|
+
git_full_name: params[:git_full_name],
|
15
|
+
git_user_email: params[:git_user_email],
|
16
|
+
clone_branch_directly: params[:clone_branch_directly])
|
10
17
|
Encrypt.new.clear_password(params[:git_url])
|
11
18
|
Encrypt.new.store_password(params[:git_url], to)
|
12
19
|
|
@@ -96,7 +96,10 @@ module Match
|
|
96
96
|
c.action do |args, options|
|
97
97
|
params = FastlaneCore::Configuration.create(Match::Options.available_options, options.__hash__)
|
98
98
|
params.load_configuration_file("Matchfile")
|
99
|
-
decrypted_repo = Match::GitHelper.clone(params[:git_url],
|
99
|
+
decrypted_repo = Match::GitHelper.clone(params[:git_url],
|
100
|
+
params[:shallow_clone],
|
101
|
+
branch: params[:git_branch],
|
102
|
+
clone_branch_directly: params[:clone_branch_directly])
|
100
103
|
UI.success "Repo is at: '#{decrypted_repo}'"
|
101
104
|
end
|
102
105
|
end
|
@@ -1,6 +1,19 @@
|
|
1
1
|
module Match
|
2
2
|
class GitHelper
|
3
|
-
def self.clone(git_url,
|
3
|
+
def self.clone(git_url,
|
4
|
+
shallow_clone,
|
5
|
+
manual_password: nil,
|
6
|
+
skip_docs: false,
|
7
|
+
branch: "master",
|
8
|
+
git_full_name: nil,
|
9
|
+
git_user_email: nil,
|
10
|
+
clone_branch_directly: false)
|
11
|
+
# Note: if you modify the parameters above, don't forget to also update the method call in
|
12
|
+
# - runner.rb
|
13
|
+
# - nuke.rb
|
14
|
+
# - change_password.rb
|
15
|
+
# - commands_generator.rb
|
16
|
+
#
|
4
17
|
return @dir if @dir
|
5
18
|
|
6
19
|
@dir = Dir.mktmpdir
|
data/match/lib/match/nuke.rb
CHANGED
@@ -11,7 +11,13 @@ module Match
|
|
11
11
|
self.params = params
|
12
12
|
self.type = type
|
13
13
|
|
14
|
-
params[:workspace] = GitHelper.clone(params[:git_url],
|
14
|
+
params[:workspace] = GitHelper.clone(params[:git_url],
|
15
|
+
params[:shallow_clone],
|
16
|
+
skip_docs: params[:skip_docs],
|
17
|
+
branch: params[:git_branch],
|
18
|
+
git_full_name: params[:git_full_name],
|
19
|
+
git_user_email: params[:git_user_email],
|
20
|
+
clone_branch_directly: params[:clone_branch_directly])
|
15
21
|
|
16
22
|
had_app_identifier = self.params.fetch(:app_identifier, ask: false)
|
17
23
|
self.params[:app_identifier] = '' # we don't really need a value here
|
@@ -32,14 +32,14 @@ module Snapshot
|
|
32
32
|
# Xcode 7:
|
33
33
|
# ["iPad Pro", "iPad Air"]
|
34
34
|
# Xcode 8:
|
35
|
-
# ["iPad Pro (9.7
|
35
|
+
# ["iPad Pro (9.7-Inch)", "iPad Pro (12.9-Inch)"]
|
36
36
|
#
|
37
37
|
# Full list: ["iPad 2", "iPad Retina", "iPad Air", "iPad Air 2", "iPad Pro"]
|
38
38
|
next if sim.name.include?("iPad 2")
|
39
39
|
next if sim.name.include?("iPad Retina")
|
40
40
|
next if sim.name.include?("iPad Air 2")
|
41
41
|
# In Xcode 8, we only need iPad Pro 9.7 inch, not the iPad Air
|
42
|
-
next if all_simulators.any? { |a| a.name.include?("9.7
|
42
|
+
next if all_simulators.any? { |a| a.name.include?("9.7-inch") } && sim.name.include?("iPad Air")
|
43
43
|
|
44
44
|
# Filter iPhones
|
45
45
|
# Full list: ["iPhone 4s", "iPhone 5", "iPhone 5s", "iPhone 6", "iPhone 6 Plus", "iPhone 6s", "iPhone 6s Plus"]
|
@@ -54,10 +54,10 @@ module Snapshot
|
|
54
54
|
'iPhoneSE' => "iPhone SE",
|
55
55
|
'iPad2' => "iPad2",
|
56
56
|
'iPadAir2' => 'iPad Air 2',
|
57
|
-
'iPadPro(12.9-inch)' => 'iPad Air Pro (12.9
|
58
|
-
'iPadPro(9.7-inch)' => 'iPad Air Pro (9.7
|
59
|
-
'iPadPro(9.7inch)' => "iPad Pro (9.7
|
60
|
-
'iPadPro(12.9inch)' => "iPad Pro (12.9
|
57
|
+
'iPadPro(12.9-inch)' => 'iPad Air Pro (12.9-inch)',
|
58
|
+
'iPadPro(9.7-inch)' => 'iPad Air Pro (9.7-inch)',
|
59
|
+
'iPadPro(9.7inch)' => "iPad Pro (9.7-inch)",
|
60
|
+
'iPadPro(12.9inch)' => "iPad Pro (12.9-inch)",
|
61
61
|
'iPadPro' => "iPad Pro",
|
62
62
|
'iPad' => "iPad",
|
63
63
|
'Mac' => "Mac"
|
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.29.0
|
4
|
+
version: 2.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -1357,23 +1357,23 @@ metadata:
|
|
1357
1357
|
post_install_message:
|
1358
1358
|
rdoc_options: []
|
1359
1359
|
require_paths:
|
1360
|
-
- produce/lib
|
1361
|
-
- gym/lib
|
1362
|
-
- spaceship/lib
|
1363
|
-
- sigh/lib
|
1364
|
-
- pem/lib
|
1365
|
-
- match/lib
|
1366
1360
|
- cert/lib
|
1367
1361
|
- credentials_manager/lib
|
1368
|
-
-
|
1362
|
+
- deliver/lib
|
1369
1363
|
- fastlane/lib
|
1370
|
-
- supply/lib
|
1371
|
-
- snapshot/lib
|
1372
|
-
- pilot/lib
|
1373
1364
|
- fastlane_core/lib
|
1374
|
-
- deliver/lib
|
1375
1365
|
- frameit/lib
|
1366
|
+
- gym/lib
|
1367
|
+
- match/lib
|
1368
|
+
- pem/lib
|
1369
|
+
- pilot/lib
|
1370
|
+
- produce/lib
|
1376
1371
|
- scan/lib
|
1372
|
+
- screengrab/lib
|
1373
|
+
- sigh/lib
|
1374
|
+
- snapshot/lib
|
1375
|
+
- spaceship/lib
|
1376
|
+
- supply/lib
|
1377
1377
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1378
1378
|
requirements:
|
1379
1379
|
- - ">="
|
@@ -1381,14 +1381,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1381
1381
|
version: 2.0.0
|
1382
1382
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1383
1383
|
requirements:
|
1384
|
-
- - "
|
1384
|
+
- - ">="
|
1385
1385
|
- !ruby/object:Gem::Version
|
1386
|
-
version:
|
1386
|
+
version: '0'
|
1387
1387
|
requirements: []
|
1388
1388
|
rubyforge_project:
|
1389
|
-
rubygems_version: 2.
|
1389
|
+
rubygems_version: 2.5.1
|
1390
1390
|
signing_key:
|
1391
1391
|
specification_version: 4
|
1392
1392
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1393
1393
|
Android apps
|
1394
1394
|
test_files: []
|
1395
|
+
has_rdoc:
|