13 lines
266 B
Markdown
13 lines
266 B
Markdown
|
## Begin a Rails App
|
||
|
|
||
|
```
|
||
|
gem install rails && rbenv rehash
|
||
|
rails new jokes && cd jokes
|
||
|
bundle exec rails generate scaffold Joke joke:string punchline:string
|
||
|
bundle exec rake db:migrate
|
||
|
```
|
||
|
|
||
|
note:
|
||
|
Put your speaker notes here.
|
||
|
You can see them pressing 's'.
|