Open specialorange opened 10 years ago
You have to call rails generate backbone:install but how do you uninstall? update readme if necessary
rails generate backbone:install
rails destroy is a standard Rails command you can use to undo most changes created by any generator.
rails destroy
rails destroy backbone:install
or
rails d backbone:install
for short, should work.
You have to call
rails generate backbone:install
but how do you uninstall? update readme if necessary