Last active
December 14, 2015 23:48
-
-
Save tsmsogn/5167806 to your computer and use it in GitHub Desktop.
[rails]Command snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rails new app --skip-test-unit | |
| cd app | |
| bundle update | |
| bundle install --without production | |
| rails generate rspec:install | |
| rails generate model User name:string | |
| rails generate controller Users new --no-test-framework | |
| rails generate integration_test user_pages |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment