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.e. delete all the files it created and roll back any changes made? Not necessarily to the db, but more to the config files.

E.g. automatically deleting all the resource mappings for the model/controller deleted in the routes.rb file and everywhere else that changes might have been made?

Thanks.

share|improve this question

3 Answers

up vote 131 down vote accepted
rails destroy controller lalala
rails destroy model yadayada
rails destroy scaffold hohoho

Rails 3.2 adds a new d shortcut to the command, so now you can write:

rails d controller lalala
rails d model yadayada
rails d scaffold hohoho
share|improve this answer
This is exactly what I was looking for. – marcamillion Nov 12 '10 at 3:38
Btw, how do I use this command to delete a scaffold? The model and controller work fine...but how do I completely reverse a scaffold? – marcamillion Nov 12 '10 at 6:08
2  
Ok, I figured it out. Perhaps I was mistyping something. I just ran rails destroy scaffold lalalal and that worked. – marcamillion Nov 12 '10 at 6:49
4  
@marcamillion Must've been that extra 'L'. – varatis Jun 7 '12 at 18:12
What about removing files associated with a gem install such as rails generate <gemname>:install – doug Jan 15 at 21:37
show 1 more comment

Are you using version control (subversion, git, whatever)? Just revert. If not - why not?!!

share|improve this answer
Hrmm....interesting. I never thought about that...however, it so happens that I don't think I have a commit of the state I want to get back to. It's a brand new app and I just created a bunch of stuff. But now I want to get rid of them. Thanks for the tip though. – marcamillion Nov 12 '10 at 3:37
3  
Reverting may remove other code that was not intended to be removed (for example, say changes to controller X are wanted, but want to remove controller Y and related models) – Zabba Nov 12 '10 at 5:49
3  
@Zabba: There are some rules of the trade: Before any destructive command, always commit. Rails generators will print out a list of what they changes/created. They even warn you when you're about to overwrite something and you can inspect the differences. Know your tools: git gives you the power to selectively rollback some files, and not others. You can do this on the command line, or if you use RubyMine, you'll have beautiful graphical git tools for diffs, rollbacks, commit, etc. – Wolfram Arnold Feb 7 '12 at 5:40

rails destroy controller Controler_name was returning a bunch of errors. To be able to destroy controller I had to remove related routes in routes.rb. P.S. I'm using rails 3.1

share|improve this answer
1  
yeah nice catch maikel.. i hd same issue thanks – anshuman Mar 8 '12 at 8:44

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.