Section explaining how rails runner accepts code in a ruby file.

[ci skip]
This commit is contained in:
Waseem Ahmad 2015-02-26 21:35:35 +05:30
parent b940e9feea
commit c2c844e600

@ -338,6 +338,12 @@ You can specify the environment in which the `runner` command should operate usi
$ bin/rails runner -e staging "Model.long_running_method"
```
You can even execute ruby code written in a file with runner.
```bash
$ bin/rails runner lib/code_to_be_run.rb
```
### `rails destroy`
Think of `destroy` as the opposite of `generate`. It'll figure out what generate did, and undo it.