1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 23:28:02 +00:00

Add Pretend Generations as a rails til.

This commit is contained in:
jbranchaud
2015-05-13 08:31:45 -05:00
parent eb6f7cafa2
commit 6f9e3ad894
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# Pretend Generations
To get an idea of what a `rails generate` command is going to to
*generate*, you can do a dry run with the `-p` flag or
the `--pretend` flag. If you run
```
$ rails generate model post -p
```
then you will see the following output
```
invoke active_record
create db/migrate/20150513132556_create_posts.rb
create app/models/post.rb
invoke rspec
create spec/models/post_spec.rb
invoke factory_girl
create spec/factories/posts.rb
```
though those files will not have actually been created. You now know
precisely what rails will generate for you.