fastlane 1.36.0 → 1.36.1
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/README.md +15 -15
- data/lib/fastlane/actions/register_devices.rb +1 -1
- data/lib/fastlane/actions/xcodebuild.rb +20 -14
- data/lib/fastlane/documentation/actions_list.rb +1 -1
- data/lib/fastlane/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ca15020ffa34dc45bd122e24dc0273e004d60ea
|
4
|
+
data.tar.gz: 421fe4898409a81328e6f131ac953e317d61b851
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c8e500fd3fdd75422f7c4d85b358c0d0156270aff6b9aa2051d3272b687e0615f59f448abb357586116b767ba817f7a5bf568c13a90896cff1904bad0996111
|
7
|
+
data.tar.gz: f14579e5e75acbe327501e57566ba952b5291906047a01115af1a6ad8064e987081a7272dd9b9de9db6bf33a1edc96a75d760c1e209a313f09ffd99be35120f4
|
data/README.md
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
<img src="assets/fastlane_text.png" alt="fastlane Logo" />
|
3
3
|
</h3>
|
4
4
|
<p align="center">
|
5
|
-
<a href="https://github.com/
|
6
|
-
<a href="https://github.com/
|
5
|
+
<a href="https://github.com/fastlane/deliver">deliver</a> •
|
6
|
+
<a href="https://github.com/fastlane/snapshot">snapshot</a> •
|
7
7
|
<a href="https://github.com/fastlane/frameit">frameit</a> •
|
8
8
|
<a href="https://github.com/fastlane/PEM">PEM</a> •
|
9
|
-
<a href="https://github.com/
|
9
|
+
<a href="https://github.com/fastlane/sigh">sigh</a> •
|
10
10
|
<a href="https://github.com/fastlane/produce">produce</a> •
|
11
11
|
<a href="https://github.com/fastlane/cert">cert</a> •
|
12
12
|
<a href="https://github.com/fastlane/spaceship">spaceship</a> •
|
@@ -21,7 +21,7 @@ fastlane
|
|
21
21
|
============
|
22
22
|
|
23
23
|
[](https://twitter.com/KrauseFx)
|
24
|
-
[](https://github.com/KrauseFx/fastlane/blob/master/LICENSE)
|
25
25
|
[](http://rubygems.org/gems/fastlane)
|
26
26
|
[](https://travis-ci.org/KrauseFx/fastlane)
|
27
27
|
|
@@ -35,7 +35,7 @@ Get in contact with the developer on Twitter: [@KrauseFx](https://twitter.com/Kr
|
|
35
35
|
<a href="#installation">Installation</a> •
|
36
36
|
<a href="#quick-start">Quick Start</a> •
|
37
37
|
<a href="#examples">Example Setups</a> •
|
38
|
-
<a href="https://github.com/
|
38
|
+
<a href="https://github.com/fastlane/fastlane/tree/master/docs">Documentation</a> •
|
39
39
|
<a href="#need-help">Need help?</a>
|
40
40
|
</p>
|
41
41
|
|
@@ -51,7 +51,7 @@ Store your configuration in a text file to easily test, build, and deploy from _
|
|
51
51
|
|
52
52
|
Define different environments (`lanes`) in your `Fastfile`: Examples are: `appstore`, `beta` and `test`.
|
53
53
|
|
54
|
-
You define a `lane` like this (more details about the commands in the [Actions](https://github.com/
|
54
|
+
You define a `lane` like this (more details about the commands in the [Actions](https://github.com/fastlane/fastlane/blob/master/docs/Actions.md) documentation):
|
55
55
|
|
56
56
|
```ruby
|
57
57
|
lane :appstore do
|
@@ -86,7 +86,7 @@ fastlane appstore
|
|
86
86
|
:rocket: | Saves you **hours** for every app update you release
|
87
87
|
:pencil2: | Very flexible configuration using a fully customisable `Fastfile`
|
88
88
|
:mountain_cableway: | Implement a fully working Continuous Delivery process
|
89
|
-
:ghost: | [Jenkins Integration](https://github.com/
|
89
|
+
:ghost: | [Jenkins Integration](https://github.com/fastlane/fastlane/blob/master/docs/Jenkins.md): Show the output directly in the Jenkins test results
|
90
90
|
:book: | Automatically generate a markdown documentation of your lane config
|
91
91
|
:hatching_chick: | Over 90 built-in integrations available
|
92
92
|
:computer: | Support for both iOS and Mac OS apps
|
@@ -99,7 +99,7 @@ fastlane appstore
|
|
99
99
|
|
100
100
|
## Installation
|
101
101
|
|
102
|
-
I recommend following the [fastlane guide](https://github.com/
|
102
|
+
I recommend following the [fastlane guide](https://github.com/fastlane/fastlane/blob/master/docs/Guide.md) to get started.
|
103
103
|
|
104
104
|
sudo gem install fastlane --verbose
|
105
105
|
|
@@ -125,9 +125,9 @@ The setup assistant will create all the necessary files for you, using the exist
|
|
125
125
|
- ```cd [your_project_folder]```
|
126
126
|
- ```fastlane init```
|
127
127
|
- Follow the setup assistant, which will set up ```fastlane``` for you
|
128
|
-
- Further customise the ```Fastfile``` with [actions](https://github.com/
|
128
|
+
- Further customise the ```Fastfile``` with [actions](https://github.com/fastlane/fastlane/blob/master/docs/Actions.md).
|
129
129
|
|
130
|
-
For more details, please follow the [fastlane guide](https://github.com/
|
130
|
+
For more details, please follow the [fastlane guide](https://github.com/fastlane/fastlane/blob/master/docs/Guide.md) or [documentation](https://github.com/fastlane/fastlane/tree/master/docs).
|
131
131
|
|
132
132
|
There are also 2 Japanese fastlane guides available: [qiita](http://qiita.com/gin0606/items/162d756dfda7b84e97d4) and [mercari](http://tech.mercari.com/entry/2015/07/13/143000)
|
133
133
|
|
@@ -154,11 +154,11 @@ See how [Wikipedia](https://github.com/fastlane/examples#wikipedia-by-wikimedia-
|
|
154
154
|
|
155
155
|
`fastlane` is designed to make your life easier by bringing together all `fastlane` tools under one roof.
|
156
156
|
|
157
|
-
- [`deliver`](https://github.com/
|
158
|
-
- [`snapshot`](https://github.com/
|
157
|
+
- [`deliver`](https://github.com/fastlane/deliver): Upload screenshots, metadata and your app to the App Store
|
158
|
+
- [`snapshot`](https://github.com/fastlane/snapshot): Automate taking localized screenshots of your iOS app on every device
|
159
159
|
- [`frameit`](https://github.com/fastlane/frameit): Quickly put your screenshots into the right device frames
|
160
160
|
- [`PEM`](https://github.com/fastlane/pem): Automatically generate and renew your push notification profiles
|
161
|
-
- [`sigh`](https://github.com/
|
161
|
+
- [`sigh`](https://github.com/fastlane/sigh): Because you would rather spend your time building stuff than fighting provisioning
|
162
162
|
- [`produce`](https://github.com/fastlane/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
|
163
163
|
- [`cert`](https://github.com/fastlane/cert): Automatically create and maintain iOS code signing certificates
|
164
164
|
- [`codes`](https://github.com/fastlane/codes): Create promo codes for iOS Apps using the command line
|
@@ -173,7 +173,7 @@ See how [Wikipedia](https://github.com/fastlane/examples#wikipedia-by-wikimedia-
|
|
173
173
|
|
174
174
|
You can easily opt-out by adding `opt_out_usage` to your `Fastfile` or by setting the environment variable `FASTLANE_OPT_OUT_USAGE`. To also disable update checks, set the `FASTLANE_SKIP_UPDATE_CHECK` variable.
|
175
175
|
|
176
|
-
You can optionally submit crash reports, run `fastlane enable_crash_reporting` to get started. This makes resolving issues much easier and helps improving fastlane. [More information](https://github.com/
|
176
|
+
You can optionally submit crash reports, run `fastlane enable_crash_reporting` to get started. This makes resolving issues much easier and helps improving fastlane. [More information](https://github.com/fastlane/fastlane/releases/tag/1.33.3)
|
177
177
|
|
178
178
|
## Credentials
|
179
179
|
A detailed description about how `fastlane` stores your credentials is available on a [separate repo](https://github.com/fastlane/credentials_manager).
|
@@ -183,7 +183,7 @@ Please submit an issue on GitHub and provide information about your setup
|
|
183
183
|
|
184
184
|
## Special Thanks
|
185
185
|
|
186
|
-
Thanks to all [contributors](https://github.com/
|
186
|
+
Thanks to all [contributors](https://github.com/fastlane/fastlane/graphs/contributors) for extending and improving `fastlane`. Check out the project pages of the other tools for more sponsors and contributors.
|
187
187
|
|
188
188
|
## License
|
189
189
|
This project is licensed under the terms of the MIT license. See the LICENSE file.
|
@@ -17,7 +17,7 @@ module Fastlane
|
|
17
17
|
|
18
18
|
credentials = CredentialsManager::AccountManager.new(user: params[:username])
|
19
19
|
Spaceship.login(credentials.user, credentials.password)
|
20
|
-
ENV["FASTLANE_TEAM_ID"] =
|
20
|
+
ENV["FASTLANE_TEAM_ID"] = params[:team_id]
|
21
21
|
Spaceship.select_team
|
22
22
|
|
23
23
|
if devices
|
@@ -203,9 +203,9 @@ module Fastlane
|
|
203
203
|
|
204
204
|
# Stdout format
|
205
205
|
if testing && !archiving
|
206
|
-
xcpretty_args
|
206
|
+
xcpretty_args << (params[:xcpretty_output] ? "--#{params[:xcpretty_output]}" : "--test")
|
207
207
|
else
|
208
|
-
xcpretty_args
|
208
|
+
xcpretty_args << (params[:xcpretty_output] ? "--#{params[:xcpretty_output]}" : "--simple")
|
209
209
|
end
|
210
210
|
|
211
211
|
xcpretty_args = xcpretty_args.join(" ")
|
@@ -299,9 +299,10 @@ module Fastlane
|
|
299
299
|
['workspace', 'The workspace to use'],
|
300
300
|
['scheme', 'The scheme to build'],
|
301
301
|
['build_settings', 'Hash of additional build information'],
|
302
|
-
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII
|
302
|
+
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII output)'],
|
303
303
|
['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
|
304
|
-
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
|
304
|
+
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false'],
|
305
|
+
['xcpretty_output', 'specifies the output type for xcpretty. eg. \'test\', or \'simple\'']
|
305
306
|
]
|
306
307
|
end
|
307
308
|
|
@@ -339,9 +340,10 @@ module Fastlane
|
|
339
340
|
['workspace', 'The workspace to use'],
|
340
341
|
['scheme', 'The scheme to build'],
|
341
342
|
['build_settings', 'Hash of additional build information'],
|
342
|
-
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII
|
343
|
+
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII output)'],
|
343
344
|
['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
|
344
|
-
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
|
345
|
+
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false'],
|
346
|
+
['xcpretty_output', 'specifies the output type for xcpretty. eg. \'test\', or \'simple\'']
|
345
347
|
]
|
346
348
|
end
|
347
349
|
end
|
@@ -372,9 +374,10 @@ module Fastlane
|
|
372
374
|
['workspace', 'The workspace to use'],
|
373
375
|
['scheme', 'The scheme to build'],
|
374
376
|
['build_settings', 'Hash of additional build information'],
|
375
|
-
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII
|
377
|
+
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII output)'],
|
376
378
|
['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
|
377
|
-
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
|
379
|
+
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false'],
|
380
|
+
['xcpretty_output', 'specifies the output type for xcpretty. eg. \'test\', or \'simple\'']
|
378
381
|
]
|
379
382
|
end
|
380
383
|
end
|
@@ -405,9 +408,10 @@ module Fastlane
|
|
405
408
|
['workspace', 'The workspace to use'],
|
406
409
|
['scheme', 'The scheme to build'],
|
407
410
|
['build_settings', 'Hash of additional build information'],
|
408
|
-
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII
|
411
|
+
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII output)'],
|
409
412
|
['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
|
410
|
-
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
|
413
|
+
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false'],
|
414
|
+
['xcpretty_output', 'specifies the output type for xcpretty. eg. \'test\', or \'simple\'']
|
411
415
|
]
|
412
416
|
end
|
413
417
|
end
|
@@ -434,9 +438,10 @@ module Fastlane
|
|
434
438
|
['workspace', 'The workspace to use'],
|
435
439
|
['scheme', 'The scheme to build'],
|
436
440
|
['build_settings', 'Hash of additional build information'],
|
437
|
-
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII
|
441
|
+
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII output)'],
|
438
442
|
['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
|
439
|
-
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
|
443
|
+
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false'],
|
444
|
+
['xcpretty_output', 'specifies the output type for xcpretty. eg. \'test\', or \'simple\'']
|
440
445
|
]
|
441
446
|
end
|
442
447
|
|
@@ -467,9 +472,10 @@ module Fastlane
|
|
467
472
|
['build_settings', 'Hash of additional build information'],
|
468
473
|
['destination', 'The simulator to use, e.g. "name=iPhone 5s,OS=8.1"'],
|
469
474
|
['destination_timeout', 'The timeout for connecting to the simulator, in seconds'],
|
470
|
-
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII
|
475
|
+
['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII output)'],
|
471
476
|
['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
|
472
|
-
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
|
477
|
+
['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false'],
|
478
|
+
['xcpretty_output', 'specifies the output type for xcpretty. eg. \'test\', or \'simple\'']
|
473
479
|
]
|
474
480
|
end
|
475
481
|
|
@@ -87,7 +87,7 @@ module Fastlane
|
|
87
87
|
|
88
88
|
if required_count > 0
|
89
89
|
puts "#{required_count} of the available parameters are required".magenta
|
90
|
-
puts "They are marked with an
|
90
|
+
puts "They are marked with an asterisk *".magenta
|
91
91
|
end
|
92
92
|
else
|
93
93
|
puts "No available options".yellow
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.36.
|
4
|
+
version: 1.36.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|