How to integrate a Wrap Bootstrap theme into an Rails application?

First check this screencast: http://railscasts.com/episodes/328-twitter-bootstrap-basics then I would add a bootstrap gem like bootstrap-sass, then add the JS files through the gem by adding them to the manifest, something like this: //= require jquery //= require jquery_ujs //= require bootstrap //= require_tree . then i would get the css files that you bought from wrapboostrap … Read more

Bootstrap 3+Rails 4 – Certain Glyphicons not working

I had the same problem and found a solution. Full credit goes to Eric Minkel, who wrote a detailed blog post on the topic. I would highly suggest reading it for further reasoning. Edit app/assets/stylesheets/application.css by adding: *= require bootstrap Edit app/assets/javascripts/application.js by adding: //= require bootstrap In config/application.rb, add the following after class Application … Read more