A rails application template which born from Startup DEV and now is used to start most of my projects.
- Clone rails-template to your home directory.
git clone git://github.com/josemarluedke/rails-template.git
- Run rails new app command using this template.
rails new app_name -m ~/rails-template/template.rb
- That's it! Everything should be in place.
If you will use devise and omniauth, switch the branch to devise-omniauth
- Clone rails-template to your home directory.
git clone git://github.com/josemarluedke/rails-template.git
- Switch the branch to devise-omniauth
cd rails-template
git checkout devise-omniauth
- Run rails new app command using this template.
rails new app_name -m ~/rails-template/template.rb
- That's it! Everything should be in place.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request