-
-
Save trodrigu/65e051bba8a5ea8633b1 to your computer and use it in GitHub Desktop.
This file contains 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 "Enter app name " | |
read name | |
echo "Your app's name is: $name" | |
echo "Installing..." | |
rails new $name -T -d postgresql | |
cd $name | |
echo 'gem "rspec-rails", :group => [:development, :test]' >> Gemfile | |
bundle | |
rails g rspec:install | |
echo 'gem "devise"' >> Gemfile | |
rails g devise:install | |
rails g devise user | |
rake db:create | |
rake db:migrate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment