Ruby on Rails equivalent for Maven Archetypes
Posted
by
Drew
on Stack Overflow
See other posts from Stack Overflow
or by Drew
Published on 2011-01-06T20:44:08Z
Indexed on
2011/01/06
22:54 UTC
Read the original article
Hit count: 494
Maven Archetypes are handy ways to get a project up and going in no time flat. Rails is kinda like an archetype in and of itself. However, I'm curious to know if there are any Rails equivalents for Maven Archetypes.
For example, I want to create an Archetype with full authentication already built in via Authlogic. With Maven Archetypes I would need to build a project with it already ready to go, create my archetype and start working back parameterizing things that should be parameterized. Then anyone can make a Rails project with Authlogic set up by filling out a few questions during the archetype generate command and boom! Fully functional Rails app with Authlogic built in.
Is there a Rails Equivalent? Are Generators expected to do this? Is this just not Rails-y?
© Stack Overflow or respective owner