-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b4e40a
commit 0c3a472
Showing
3 changed files
with
111 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,126 @@ | ||
fastlane documentation | ||
================ | ||
---- | ||
|
||
# Installation | ||
|
||
Make sure you have the latest version of the Xcode command line tools installed: | ||
|
||
``` | ||
```sh | ||
xcode-select --install | ||
``` | ||
|
||
Install _fastlane_ using | ||
``` | ||
[sudo] gem install fastlane -NV | ||
``` | ||
or alternatively using `brew install fastlane` | ||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) | ||
|
||
# Available Actions | ||
|
||
### generate_docs | ||
``` | ||
fastlane generate_docs | ||
|
||
```sh | ||
[bundle exec] fastlane generate_docs | ||
``` | ||
|
||
|
||
|
||
### fetch_dependencies | ||
|
||
```sh | ||
[bundle exec] fastlane fetch_dependencies | ||
``` | ||
fastlane fetch_dependencies | ||
``` | ||
|
||
**Fetch flutter dependencies** | ||
|
||
### build_autogenerated_code | ||
|
||
```sh | ||
[bundle exec] fastlane build_autogenerated_code | ||
``` | ||
fastlane build_autogenerated_code | ||
``` | ||
|
||
**Generate flutter generated code** | ||
|
||
### lint_format | ||
|
||
```sh | ||
[bundle exec] fastlane lint_format | ||
``` | ||
fastlane lint_format | ||
``` | ||
|
||
**Lint: Check code format** | ||
|
||
### lint_check_language_sorting | ||
|
||
```sh | ||
[bundle exec] fastlane lint_check_language_sorting | ||
``` | ||
fastlane lint_check_language_sorting | ||
``` | ||
|
||
**Lint: Check code format** | ||
|
||
### lint_analyze | ||
|
||
```sh | ||
[bundle exec] fastlane lint_analyze | ||
``` | ||
fastlane lint_analyze | ||
``` | ||
|
||
**Lint: Analyze code** | ||
|
||
### lint_code_metrics | ||
|
||
```sh | ||
[bundle exec] fastlane lint_code_metrics | ||
``` | ||
fastlane lint_code_metrics | ||
``` | ||
|
||
**Lint: Code metrics** | ||
|
||
### lints | ||
|
||
```sh | ||
[bundle exec] fastlane lints | ||
``` | ||
fastlane lints | ||
``` | ||
|
||
**Run linters** | ||
|
||
### ensure_no_change_in_generated_code | ||
|
||
```sh | ||
[bundle exec] fastlane ensure_no_change_in_generated_code | ||
``` | ||
fastlane ensure_no_change_in_generated_code | ||
``` | ||
|
||
**Check generated code is fine** | ||
|
||
### tests | ||
|
||
```sh | ||
[bundle exec] fastlane tests | ||
``` | ||
fastlane tests | ||
``` | ||
|
||
**Run tests** | ||
|
||
### clean_up | ||
|
||
```sh | ||
[bundle exec] fastlane clean_up | ||
``` | ||
fastlane clean_up | ||
``` | ||
|
||
**Clean up project** | ||
|
||
### build_flutter | ||
``` | ||
fastlane build_flutter | ||
|
||
```sh | ||
[bundle exec] fastlane build_flutter | ||
``` | ||
|
||
|
||
|
||
### get_next_build_number | ||
|
||
```sh | ||
[bundle exec] fastlane get_next_build_number | ||
``` | ||
fastlane get_next_build_number | ||
``` | ||
|
||
**Get next Build Number** | ||
|
||
---- | ||
|
||
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. | ||
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). | ||
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools). | ||
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. | ||
|
||
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). | ||
|
||
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters