mirror of https://github.com/rails/rails
Merge pull request #49277 from akhilgkrishnan/add-missing-dollar-s-gn
Add missing dollar sign for bash script [skip ci]
This commit is contained in:
commit
ff6bf8dd7e
|
@ -4,8 +4,8 @@
|
|||
defined by Active Record.
|
||||
|
||||
```bash
|
||||
bin/rails generate model Post save
|
||||
bin/rails generate model Post hash
|
||||
$ bin/rails generate model Post save
|
||||
$ bin/rails generate model Post hash
|
||||
```
|
||||
|
||||
*Petrik de Heus*
|
||||
|
@ -15,9 +15,9 @@
|
|||
* Add ability to show slow tests to the test runner
|
||||
|
||||
```bash
|
||||
bin/test --profile # additionally prints 10 (default) slowest tests
|
||||
$ bin/test --profile # additionally prints 10 (default) slowest tests
|
||||
# or
|
||||
bin/test --profile 20 # prints 20 slowest tests
|
||||
$ bin/test --profile 20 # prints 20 slowest tests
|
||||
```
|
||||
|
||||
*fatkodima*
|
||||
|
@ -25,7 +25,7 @@
|
|||
* `rails new --javascript` generator now supports Bun
|
||||
|
||||
```bash
|
||||
rails new my_new_app --javascript=bun
|
||||
$ rails new my_new_app --javascript=bun
|
||||
```
|
||||
|
||||
*Jason Meller*
|
||||
|
|
Loading…
Reference in New Issue