fastlane 2.18.0.beta.20170220010017 → 2.18.0.beta.20170221010026

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: 568001c3d6ed935a70ccac7f4be2fa95a03a094f
4
- data.tar.gz: fac60fec3137b889d6de9cdc92f84940e4fca35d
3
+ metadata.gz: 5724a459e0f5dceee7b944c6a7d8cc24edd09347
4
+ data.tar.gz: ac696c73dda9a1c4e38ac3f856dca8c1ac492bd7
5
5
  SHA512:
6
- metadata.gz: 235b9f69f0c604b7f07a39dcc11b50957398a7eac104701d7eb24411cad01674179ce0125a3236077f811bc915cabddeb06568bbf4d337d51a3dac31cd01f114
7
- data.tar.gz: 480ddca7b76dd1c58d11b1d95323068b569e1f6c02008bd2a21541885a411ff4499b26c14c82f073f27d7cb16aedb81f826d26f3efdf152603f5e2c0ccd9fd4f
6
+ metadata.gz: 6bb3ae47b11d4bc4379be883da0ff82f3ffb0a45ba835894303a8299f7f8cc00308f81d471aa99cfecdbb61a4ed2c3fd1d45fd85717e21dbd565934c099bc051
7
+ data.tar.gz: 608b1c0364901e657e5902e23adf7866a8b56f1a13f788b8b62a007d46459b756cd779122ddb4fa2a99c77f87a1b319a91a8a8781d750c2be83b5388eada4cd4
@@ -101,6 +101,7 @@ module CredentialsManager
101
101
 
102
102
  def ask_for_login
103
103
  puts "-------------------------------------------------------------------------------------".green
104
+ puts "Please provide your Apple Developer Program account credentials".green
104
105
  puts "The login information you enter will be stored in your macOS Keychain".green
105
106
  if default_prefix?
106
107
  # We don't want to show this message, if we ask for the application specific password
@@ -123,6 +123,12 @@ Download existing screenshots from iTunes Connect
123
123
  fastlane deliver download_screenshots
124
124
  ```
125
125
 
126
+ Download existing metadata from iTunes Connect
127
+
128
+ ```
129
+ fastlane deliver download_metadata
130
+ ```
131
+
126
132
  To get a list of available options run
127
133
 
128
134
  ```
@@ -92,6 +92,7 @@ module Fastlane
92
92
  FastlaneCore::Globals.verbose = true
93
93
  end
94
94
  global_option('--troubleshoot', 'Enables extended verbose mode. Use with caution, as this even includes ALL sensitive data. Cannot be used on CI.')
95
+ global_option('--env STRING[,STRING2]', String, 'Add environment(s) to use with `dotenv`')
95
96
 
96
97
  always_trace!
97
98
 
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.18.0.beta.20170220010017'.freeze
2
+ VERSION = '2.18.0.beta.20170221010026'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -9,7 +9,7 @@ module Frameit
9
9
  # path: Path to screenshot
10
10
  # color: Color to use for the frame
11
11
  def initialize(path, color)
12
- UI.user_error "Couldn't find file at path '#{path}'" unless File.exist? path
12
+ UI.user_error!("Couldn't find file at path '#{path}'") unless File.exist? path
13
13
  @color = color
14
14
  @path = path
15
15
  @size = FastImage.size(path)
@@ -24,11 +24,11 @@ module Screengrab
24
24
 
25
25
  always_trace!
26
26
 
27
- FastlaneCore::CommanderGenerator.new.generate(Screengrab::Options.available_options)
28
-
29
27
  command :run do |c|
30
28
  c.syntax = 'fastlane screengrab'
31
- c.description = 'Take new screenshots based on the screengrabfile.'
29
+ c.description = 'Take new screenshots based on the Screengrabfile.'
30
+
31
+ FastlaneCore::CommanderGenerator.new.generate(Screengrab::Options.available_options, command: c)
32
32
 
33
33
  c.action do |args, options|
34
34
  o = options.__hash__.dup
@@ -24,12 +24,12 @@ module Snapshot
24
24
 
25
25
  always_trace!
26
26
 
27
- FastlaneCore::CommanderGenerator.new.generate(Snapshot::Options.available_options)
28
-
29
27
  command :run do |c|
30
28
  c.syntax = 'fastlane snapshot'
31
29
  c.description = 'Take new screenshots based on the Snapfile.'
32
30
 
31
+ FastlaneCore::CommanderGenerator.new.generate(Snapshot::Options.available_options, command: c)
32
+
33
33
  c.action do |args, options|
34
34
  load_config(options)
35
35
 
@@ -62,7 +62,7 @@ module Snapshot
62
62
  command :reset_simulators do |c|
63
63
  c.syntax = 'fastlane snapshot reset_simulators'
64
64
  c.description = "This will remove all your existing simulators and re-create new ones"
65
- c.option '-i', '--ios String', String, 'The comma separated list of iOS Versions you want to use'
65
+ c.option '-i', '--ios_version String', String, 'The comma separated list of iOS Versions you want to use'
66
66
  c.option '--force', 'Disables confirmation prompts'
67
67
 
68
68
  c.action do |args, options|
@@ -78,6 +78,8 @@ module Snapshot
78
78
  c.syntax = 'fastlane snapshot clear_derived_data -f path'
79
79
  c.description = "Clear the directory where build products and other derived data will go"
80
80
 
81
+ FastlaneCore::CommanderGenerator.new.generate(Snapshot::Options.available_options, command: c)
82
+
81
83
  c.action do |args, options|
82
84
  load_config(options)
83
85
  derived_data_path = Snapshot.config[:derived_data_path]
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.20170220010017
4
+ version: 2.18.0.beta.20170221010026
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-20 00:00:00.000000000 Z
17
+ date: 2017-02-21 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
- - fastlane_core/lib
1298
- - produce/lib
1297
+ - deliver/lib
1298
+ - scan/lib
1299
+ - gym/lib
1299
1300
  - spaceship/lib
1301
+ - snapshot/lib
1302
+ - pem/lib
1303
+ - screengrab/lib
1300
1304
  - frameit/lib
1301
1305
  - credentials_manager/lib
1302
- - gym/lib
1303
- - screengrab/lib
1304
- - cert/lib
1305
1306
  - fastlane/lib
1306
- - pilot/lib
1307
- - snapshot/lib
1308
- - pem/lib
1309
- - scan/lib
1310
- - sigh/lib
1311
- - deliver/lib
1312
1307
  - match/lib
1308
+ - cert/lib
1309
+ - fastlane_core/lib
1313
1310
  - supply/lib
1311
+ - produce/lib
1312
+ - sigh/lib
1313
+ - pilot/lib
1314
1314
  required_ruby_version: !ruby/object:Gem::Requirement
1315
1315
  requirements:
1316
1316
  - - ">="