fastlane 2.18.0.beta.20170216184940 → 2.18.0.beta.20170217010035

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7431b559aecb8a426e899d392f1d3a3d7816532c
4
- data.tar.gz: dbbfd0bf1e648bc07e6d631bdb2d617038a768c5
3
+ metadata.gz: 310db8a13b0c66ef34357ec1084a423858108fb3
4
+ data.tar.gz: 07baaec83f5864f451c6309c15b882cbb699ab3e
5
5
  SHA512:
6
- metadata.gz: e4feecf7e86cc88f9d5e5037173ff13abc2e206427bdae38c2b3c9c0a5ba5ae3cf3419dae2fca04ff24bf455eb7cafda862b0d2f5fbb24d94c856c1b147079ee
7
- data.tar.gz: 23872b59cbac7b0b70c42cd5783530c64a7ac16e0b9d987819695eacd8b594555421460fd35295f6698e3aa9217b351c438edf4ea2d5d0d346d69ddf6a0f38f7
6
+ metadata.gz: 1ccf8baace27206b0adcc3ef67e8d9579278b4a7677d6ed1ff14964ab1970876737571bddc3c19d6c45709d9286202732609bff9976915a6ad35b635941b00fd
7
+ data.tar.gz: 64364faa19f05f3f19c316974bd3f4fda340c560b62e2140af884a755bc54a79a38099973b9957e4501bd3d6759b02a9d6f638ebedb9362b76142edacce64f73
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.18.0.beta.20170216184940'.freeze
2
+ VERSION = '2.18.0.beta.20170217010035'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -23,12 +23,12 @@ module Match
23
23
 
24
24
  global_option('--verbose') { FastlaneCore::Globals.verbose = true }
25
25
 
26
- FastlaneCore::CommanderGenerator.new.generate(Match::Options.available_options)
27
-
28
26
  command :run do |c|
29
27
  c.syntax = 'fastlane match'
30
28
  c.description = Match::DESCRIPTION
31
29
 
30
+ FastlaneCore::CommanderGenerator.new.generate(Match::Options.available_options, command: c)
31
+
32
32
  c.action do |args, options|
33
33
  if args.count > 0
34
34
  FastlaneCore::UI.user_error!("Please run `fastlane match [type]`, allowed values: development, adhoc or appstore")
@@ -45,6 +45,8 @@ module Match
45
45
  c.syntax = "fastlane match #{type}"
46
46
  c.description = "Run match for a #{type} provisioning profile"
47
47
 
48
+ FastlaneCore::CommanderGenerator.new.generate(Match::Options.available_options, command: c)
49
+
48
50
  c.action do |args, options|
49
51
  params = FastlaneCore::Configuration.create(Match::Options.available_options, options.__hash__)
50
52
  params.load_configuration_file("Matchfile") # this has to be done *before* overwriting the value
@@ -73,6 +75,9 @@ module Match
73
75
  command :change_password do |c|
74
76
  c.syntax = 'fastlane match change_password'
75
77
  c.description = 'Re-encrypt all files with a different password'
78
+
79
+ FastlaneCore::CommanderGenerator.new.generate(Match::Options.available_options, command: c)
80
+
76
81
  c.action do |args, options|
77
82
  params = FastlaneCore::Configuration.create(Match::Options.available_options, options.__hash__)
78
83
  params.load_configuration_file("Matchfile")
@@ -85,6 +90,9 @@ module Match
85
90
  command :decrypt do |c|
86
91
  c.syntax = "fastlane match decrypt"
87
92
  c.description = "Decrypts the repository and keeps it on the filesystem"
93
+
94
+ FastlaneCore::CommanderGenerator.new.generate(Match::Options.available_options, command: c)
95
+
88
96
  c.action do |args, options|
89
97
  params = FastlaneCore::Configuration.create(Match::Options.available_options, options.__hash__)
90
98
  params.load_configuration_file("Matchfile")
@@ -92,6 +100,7 @@ module Match
92
100
  UI.success "Repo is at: '#{decrypted_repo}'"
93
101
  end
94
102
  end
103
+
95
104
  command "nuke" do |c|
96
105
  # We have this empty command here, since otherwise the normal `match` command will be executed
97
106
  c.syntax = "fastlane match nuke"
@@ -105,6 +114,9 @@ module Match
105
114
  command "nuke #{type}" do |c|
106
115
  c.syntax = "fastlane match nuke #{type}"
107
116
  c.description = "Delete all certificates and provisioning profiles from the Apple Dev Portal of the type #{type}"
117
+
118
+ FastlaneCore::CommanderGenerator.new.generate(Match::Options.available_options, command: c)
119
+
108
120
  c.action do |args, options|
109
121
  params = FastlaneCore::Configuration.create(Match::Options.available_options, options.__hash__)
110
122
  params.load_configuration_file("Matchfile")
@@ -22,12 +22,12 @@ module PEM
22
22
 
23
23
  global_option('--verbose') { FastlaneCore::Globals.verbose = true }
24
24
 
25
- FastlaneCore::CommanderGenerator.new.generate(PEM::Options.available_options)
26
-
27
25
  command :renew do |c|
28
26
  c.syntax = 'fastlane pem renew'
29
27
  c.description = 'Renews the certificate (in case it expired) and shows the path to the generated pem file'
30
28
 
29
+ FastlaneCore::CommanderGenerator.new.generate(PEM::Options.available_options, command: c)
30
+
31
31
  c.action do |args, options|
32
32
  PEM.config = FastlaneCore::Configuration.create(PEM::Options.available_options, options.__hash__)
33
33
  PEM::Manager.start
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.18.0.beta.20170216184940
4
+ version: 2.18.0.beta.20170217010035
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2017-02-16 00:00:00.000000000 Z
17
+ date: 2017-02-17 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: slack-notifier
@@ -1294,23 +1294,23 @@ metadata: {}
1294
1294
  post_install_message:
1295
1295
  rdoc_options: []
1296
1296
  require_paths:
1297
- - spaceship/lib
1298
- - fastlane_core/lib
1299
- - snapshot/lib
1300
1297
  - sigh/lib
1301
- - scan/lib
1302
- - produce/lib
1303
1298
  - deliver/lib
1304
1299
  - pilot/lib
1300
+ - frameit/lib
1301
+ - screengrab/lib
1305
1302
  - credentials_manager/lib
1303
+ - snapshot/lib
1306
1304
  - gym/lib
1307
- - fastlane/lib
1308
- - cert/lib
1309
1305
  - pem/lib
1310
- - supply/lib
1311
- - frameit/lib
1312
- - screengrab/lib
1306
+ - produce/lib
1307
+ - scan/lib
1313
1308
  - match/lib
1309
+ - cert/lib
1310
+ - supply/lib
1311
+ - spaceship/lib
1312
+ - fastlane_core/lib
1313
+ - fastlane/lib
1314
1314
  required_ruby_version: !ruby/object:Gem::Requirement
1315
1315
  requirements:
1316
1316
  - - ">="