Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

4 Answers

up vote 6 down vote accepted

rails generate model Portfolio

rails generate controller Admin::Portfolios

share|improve this answer
How scaffold view would be generated in this case? – Alexey Zakharov Sep 27 '10 at 4:07
when you generate the controller, it creates the views as well. if you pass actions, eg (index, show, etc) to the generate controller command, it will build those specific views and stub out the controller actions. – Jed Schneider Sep 27 '10 at 15:57
You are right Jed. But it generates only empty views. – Alexey Zakharov Sep 29 '10 at 17:04
7  
at some point we all have to write some code :P – Jed Schneider Sep 29 '10 at 19:40
1  
It is also possible to use scaffold_controller that will also use namespaced model, but in this case there is no need to fix model namespace. – Alexey Zakharov Sep 30 '10 at 14:50
show 1 more comment

@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:

gem "nifty-generators"

and run:

rails g nifty:scaffold Admin::Portfolio name:string

This will create everything a normal scaffold would with the controllers and views in an 'admin' namespace, but the model not in namespace.

share|improve this answer
my answer assumed that the model exists. But you are correct OP did not mention that! – RubyDev May 16 at 7:31

Updated as per @tybro0103

Use nifty:generators: https://github.com/ryanb/nifty-generators

rails generate nifty:scaffold Admin::Portfolio

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:

rails generate nifty:scaffold Admin::Portfolio --skip-model

If you would like the scaffold to generate views with all fields, please put the field names again, e.g:

rails generate nifty:scaffold portfolio name:string
rails generate nifty:scaffold Admin::portfolio  name:string --skip-model

I usually do the two together so its easy to just go to previous command and edit it to add Admin:: & --skip-model.

share|improve this answer
this is like the admin page making powerhouse – lulalala Apr 12 '12 at 6:05

https://github.com/sferik/rails_admin may be more your style.

  1. Add gems.
  2. bundle install
  3. Go to /admin and be in the admin panel.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.