Home > Software design >  Rails 5 - how to remove twitter-bootstrap-rails gem and install it manually
Rails 5 - how to remove twitter-bootstrap-rails gem and install it manually

Time:09-29

In project I'm using twitter-bootstrap-rails gem, but for some reasons (e.g. it blocks another gem version) I want to uninstall it and add manually (not by gem) into my project. Is there any option to do this?

CodePudding user response:

To uninstall a gem just run:

gem uninstall <gem-name>

From looking at the docs here DOCS, I don't believe there is a way to install it manually without running bundle install

  • Related