Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 245 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 245 Bytes

rails-templates

USAGE: adding this function to your bash profile.

function railsapp {
  template=$1
  appname=$2
  shift 2
  rails new $appname -m https://github.com/endorfin/rails-templates/raw/master/$template.rb $@
}