Rails 3 scaffold generator places model classes inside namespace. Example:
rails generate scaffold admin/portfolio
But I want only controllers and views to be placed inside admin namespace.
How can I avoid that?
Regards, Alexey Zakharov.
|
Rails 3 scaffold generator places model classes inside namespace. Example:
But I want only controllers and views to be placed inside admin namespace. How can I avoid that? Regards, Alexey Zakharov. |
|||
|
|
|
|
|||||||||||||||
|
|
@RubyDev was right to suggest Ryan Bate's Nifty Generators, but I don't know why he said to use the --skip-model option. Nifty Generators will actually do exactly what you are asking for. Simply add it to your Gemfile:
and run:
This will create everything a normal scaffold would with the controllers and views in an 'admin' namespace, but the model not in namespace. |
|||
|
|
Updated as per @tybro0103 Use nifty:generators: https://github.com/ryanb/nifty-generators
If you have already generated the model or scaffold without namespace and would like to do it again for admin namespace, you can skip model:
If you would like the scaffold to generate views with all fields, please put the field names again, e.g:
I usually do the two together so its easy to just go to previous command and edit it to add Admin:: & --skip-model. |
||||
|
|
|
https://github.com/sferik/rails_admin may be more your style.
|
|||
|
|