Reputation: 6485
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
Reputation: 7230
Could you just do this :
rails destroy bootstrap:install
and remove it from your Gemfile?
Upvotes: 1