RailsSkeleton
This repository contains various rails skeleton projects as branches, and a gem to get the skeleton out of the closet.
Usage
# rails-skeleton MyApp mysql
This clones the mysql branch in git://github.com/gudleik/rails-skeleton.git If you want to use your own skeleton project, pass -r git-url:
# rails-skeleton MyApp mybranch -r git://github.com/you/my-rails-templates.git
rails-skeleton will perform these steps:
* Clone the repository
* Rename all occurrences of application name to MyApp (ie MyApp::Application)
* Run bundle install
* Generate a new secret token
* Reinitialize git repository (rm -rf .git && git init)
* Run git flow init on the new repository