is there a way to do modules in rails 3 like zend framework modules ? In zend framework, you have a folder 'modules' like following structure:
/application/modules/admin
/application/modules/site
/application/modules/service
and it's routed in this way:
http://myapp.local/admin
http://myapp.local/service
http://myapp.local/ -- to site module (default).
How can I achieve this in Rails 3? There's a better way to do this type things in rails ?
Thanks in advANCE