fastlane 2.18.0.beta.20170220010017 → 2.18.0.beta.20170221010026
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/credentials_manager/lib/credentials_manager/account_manager.rb +1 -0
- data/deliver/README.md +6 -0
- data/fastlane/lib/fastlane/commands_generator.rb +1 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/frameit/lib/frameit/screenshot.rb +1 -1
- data/screengrab/lib/screengrab/commands_generator.rb +3 -3
- data/snapshot/lib/snapshot/commands_generator.rb +5 -3
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5724a459e0f5dceee7b944c6a7d8cc24edd09347
|
4
|
+
data.tar.gz: ac696c73dda9a1c4e38ac3f856dca8c1ac492bd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/deliver/README.md
CHANGED
@@ -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
|
|
@@ -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
|
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
|
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', '--
|
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.
|
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-
|
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
|
-
-
|
1298
|
-
-
|
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
|
- - ">="
|