Created
March 30, 2016 14:53
-
-
Save nkrebs13/4ff313db9c34ce5d28060b86f0ecfdee to your computer and use it in GitHub Desktop.
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
echo "gem 'devise'" >> Gemfile # Or edit Gemfile and add line: gem 'devise' | |
bundle install # Fetch and install the gems | |
rails generate devise:install # Creates config file, etc. | |
rails generate devise user # Create model class, routes, etc. | |
rake db:migrate # Create user table | |
rails generate devise:views users # Creates (minimal) views |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment