https://github.com/jeeftor/fastlane-plugin-figlet
https://github.com/jeeftor/fastlane-plugin-figlet
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeeftor/fastlane-plugin-figlet
- Owner: jeeftor
- License: mit
- Created: 2016-07-05T18:47:33.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-21T13:08:07.000Z (over 9 years ago)
- Last Synced: 2025-02-13T00:22:40.656Z (over 1 year ago)
- Language: Ruby
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# figlet plugin
```
__ _ _ _ _ _
/ _(_) __ _| | ___| |_ _ __ | |_ _ __ _(_)_ __
| |_| |/ _` | |/ _ \ __| | '_ \| | | | |/ _` | | '_ \
| _| | (_| | | __/ |_ | |_) | | |_| | (_| | | | | |
|_| |_|\__, |_|\___|\__| | .__/|_|\__,_|\__, |_|_| |_|
|___/ |_| |___/
```
This plugin will allow you to write figlet text in your fastlane file
[](https://rubygems.org/gems/fastlane-plugin-figlet)
## Getting Started
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-figlet`, add it to your project by running:
```bash
fastlane add_plugin figlet
```
It also requires that `figlet` is installed. On a mac with homebrew you can do this with:
```bash
brew install figlet
```
## About figlet
Wrapper around figlet which makes large ascii text words
## Example
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
## Fonts
You can see the fonts here: http://www.figlet.org/examples.html or with
```bash
showfigfonts
```
## Run tests for this plugin
To run both the tests, and code style validation, run
```
rake
```
To automatically fix many of the styling issues, use
```
rubocop -a
```
## Issues and Feedback
For any other issues and feedback about this plugin, please submit it to this repository.
## Troubleshooting
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md) doc in the main `fastlane` repo.
## Using `fastlane` Plugins
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md).
## About `fastlane`
`fastlane` is the easiest way to automate building and releasing your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).