
In Having Ruby on Rails my way, I outlined how to manually setup your Ruby on Rails 3 application to use custom generators for Mongoid, Haml, jQuery, RSpec, and factory_girl.
To simplify things further, I have started a template project called rails-templater. It is inspired by Mike Gunderloy’s BigOldRailsTemplate project which provides templates for Rails 2.3.x projects. To get started, clone the rails-templater repository to your hard drive:
% git clone http://github.com/kfaustino/rails-templater.git
When you are ready to create a new Rails 3 application, run:
% rails new app_name -JOT -m \
/path/to/rails-tempater/templater.rb
Optionally you can also use Compass as your stylesheet framework and Cucumber for integration testing.
I will be continuously making updates to the project by adding new recipes and template options.
Be sure to check out the project GitHub page.
Photo credit: Railroad in Crestwood by dystopos




View Comments
Thanks, this is just what I was looking for! As a side note, the command you gave to clone the repository is the read/write path. It should be git clone http://github.com/kfaustino/rails-templater.git
Thanks for catching that Luke. I updated the post
Cool, I like your choices, mine are similar:
http://github.com/dcrec1/rails3_template
Thanks dcrec1. Like the fact your using pickle. I am a big fan.
Very nice!
I am trying it now.