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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 79dab119b6a1692b4ead44f8386323f44ba9292b
4
- data.tar.gz: 2eebf681e83782c3db807673b8cac6f579de91aa
3
+ metadata.gz: e2d6217752222539765f18e46a3582ad5a321161
4
+ data.tar.gz: 221fa664a19e757b4afea97366750538d5a93c1a
5
5
  SHA512:
6
- metadata.gz: d7458977c9e7a5458b2576ffb1ffd2896a4d9c4efb1b3c3ff71d6862fc5cacdb3dcf9c05533878adb84c1abb5d66c473cf672a76d0538ce93832e89f99180b6f
7
- data.tar.gz: ed1aed4dcd68414efb92d6a435d5ef64c90a7768b56e57bddbb98f62bbc8d92091d79e85bc5196c2c3de905a8133cdaaf702383c17fec717c9df68e7a51a37cb
6
+ metadata.gz: 526b2ce145766d25900135abb2167722cf2a2d11570fed52b03d345262dceabbf231a91f0e062923b4efeb3b8cbb7124b2d2cff7a27eeef8589df981524c87b7
7
+ data.tar.gz: 27ac8cc060cd9968f0ec44c291bd99b28934d8b1cd4782088fd00b61c6f4cb8e124c153b0107d19901dfd64c4f327c9f6827501f97fc5767de608a5fc2712f4f
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.29.0.beta.20170509010055'.freeze
2
+ VERSION = '2.29.0'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -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], params[:shallow_clone], manual_password: from, skip_docs: params[:skip_docs], branch: params[:git_branch])
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], params[:shallow_clone], branch: params[:git_branch])
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, shallow_clone, manual_password: nil, skip_docs: false, branch: "master", git_full_name: nil, git_user_email: nil, clone_branch_directly: false)
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
@@ -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], params[:shallow_clone], skip_docs: params[:skip_docs], branch: params[:git_branch])
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
@@ -5,8 +5,8 @@
5
5
  # "iPhone 6",
6
6
  # "iPhone 6 Plus",
7
7
  # "iPhone 5",
8
- # "iPad Pro (12.9 inch)",
9
- # "iPad Pro (9.7 inch)",
8
+ # "iPad Pro (12.9-inch)",
9
+ # "iPad Pro (9.7-inch)",
10
10
  # "Apple TV 1080p"
11
11
  # ])
12
12
 
@@ -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 Inch)", "iPad Pro (12.9 Inch)"]
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 inch") } && sim.name.include?("iPad Air")
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 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)",
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.beta.20170509010055
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
- - screengrab/lib
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: 1.3.1
1386
+ version: '0'
1387
1387
  requirements: []
1388
1388
  rubyforge_project:
1389
- rubygems_version: 2.4.5.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: