Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm on Rails 3.1.1, Ruby 1.9.2 and the latest gem (pulled from github).

It's easy enough to add a resource to the excellent ActiveAdmin gem for Ruby. I can see you can also remove a resource by deleting the relevant .rb file from app/admin.

I can't find anything in the documentation about it, but does anyone know is there another way the remove resources... or is deleting the ActiveAdmin resource file the correct way?

share|improve this question

2 Answers

up vote 7 down vote accepted

Yes, deleting the respective resource file under app/admin is the correct approach :)

share|improve this answer
Cheers - thanks for the quick answer. – SeanGeneva Oct 13 '11 at 19:36

To add to Thomas Watson's answer, you also need to clean up references to the resource in your routes.rb file.

share|improve this answer
Thanks mate, I appreciate it. – SeanGeneva Oct 16 '12 at 19:54

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.