The upstream Rails Application Template
Ruby on Rails 2.3 is almost there and brings a bunch of pretty cool new features. One of them is called templates and it allows you to customize the bootstrapping of new applications in order to automate the initial setup of your new app and hence get up to speed faster.
I find the naming a bit confusing: since we already have view templates in Rails I will refer to this new feature as application templates from now on.
So what does an application template do? Whenever you start a new rails application you are already using the Rails default template by issuing the rails command. It creates the usual app, config etc. folders and generates a bunch of scripts and configuration files for you. Application templates simply extend this process by allowing you to add your own setup steps. This is done by writing your own template file (or grabbing someone else’s).
Pratik Naik has already written an excellent tutorial on this so I’m not going to repeat what’s already written. Basically Rails offers you a few convenience methods for adding for example routes, plugins, gems or files to your new application.
So this blog post is more about showing off my very own template that I wrote today. (For the impatient: here it is).
Of course I’m not the first and only one who has written such a template so before I started I found this collection of templates which I immediately started to steal borrow from. As you probably know every programmer has its own style, uses his own unique set of tools in his (or her) own way. Which is why I found all of the templates I saw didn’t really fit my very own needs. The ones I found were pretty basic (to me) so when I rolled my own I took what I needed from what was there and added a whole bunch of my own stuff:
- setup of configuration files for Rspec, Cucumber and Culerity (Culerity is my plugin for driving Celerity – think Selenium but withour having to use a real browser – with Cucumber)
- a working user registration/login process using authlogic, including all controllers and views
- an XHTML application layout with jQuery (+ a few plugins) and blueprint CSS set up
- a simple capistrano deployment script
- German localization for all the built-in helpers
- a Thinking Sphinx configuration file
I pretty much need all of the above for 99% of my Rails projects and it costs me at least a day every time to set this all up. Well, not anymore
Now I can run rails my_new_app -m http://gist.github.com/75038 and immediately after that start working on the distinct features.
I’m already planning to add a few extra. First of all the user authentication needs cucumber features so I don’t break anything when extending that. I also want to add configuration and deployment for a staging server. And maybe make the whole script a bit more configurable, i.e. install thinking sphinx or not etc.
The script is already pretty large so I’m not sure how much more I would want to put into it. Since you can apply templates to exisitng apps it will probably make sense to split the whole thing up at some point, so I could put the authentication part into its own template.
If you want to get started with application templates now I suggest you simply start with mine and/or the others and grab whatever you need. Just make sure you re-publish what you added so we can all build upon everyone’s work. Thanks.
Tags: automation, bootstrap, rails, ruby, templates, toolbox




March 10th, 2009 at 01:58
[...] Lang hat auf seinem Blog eine praktische Application Template veröffentlicht. Eine Application Template ist ein neues Feature in Rails 2.3, das – wie der Name [...]
March 16th, 2009 at 18:02
Nice write up, but I had to make one change to the command:
rails my_new_app -m http://gist.github.com/75038.txt
Otherwise, it pulls in the XHTML of the file, not the plaintext version.
April 21st, 2009 at 06:22
Hi,
i’m facing lot of problems with rails versions when i’m using templates ,thanks for giving suggestions in rails version 2.3,as i’m searching for this templates,i come to know about (www.templatesbasket.com) done by Nyros technolgies,it is good,they r also proving suggestions in http://www.rorexperts.com.
December 14th, 2009 at 06:38
Just stumbled upon this and couldn’t be more timely. Was just getting ready to look at creating a custom template.