codebrew / backbone-rails

Easily use backbone.js with rails 3.1
MIT License
1.62k stars 255 forks source link

How to uninstall #174

Open specialorange opened 10 years ago

specialorange commented 10 years ago

You have to call rails generate backbone:install but how do you uninstall? update readme if necessary

keichan34 commented 9 years ago

rails destroy is a standard Rails command you can use to undo most changes created by any generator.

rails destroy backbone:install

or

rails d backbone:install

for short, should work.