AdamT
AdamT

Reputation: 6485

Remove twitter bootstrap from Rails (added via twitter-bootstrap-rails)

How do I remove the twitter-bootstrap-rails gem and all the assets and configurations from my rails app?

I installed it with

bundle install
#and
rails g bootstrap:install

Upvotes: 1

Views: 1041

Answers (1)

Dougui
Dougui

Reputation: 7230

Could you just do this :

rails destroy bootstrap:install

and remove it from your Gemfile?

Upvotes: 1

Related Questions