Rails 4 - Bootstrap 3 - Font Awesome

font-awesome, ruby-on-rails, twitter-bootstrap-3

Solution

You don't need to have these two bundled together to use them.

Font Awesome now has class names that don't clash with other frameworks (i.e. fa prefix). Just use this gem: https://github.com/bokmann/font-awesome-rails

The Bootstrap SASS port should work just fine too: https://github.com/twbs/bootstrap-sass

Problem

I can't seem to find a single gem or combination of gems that support Bootstrap 3 and Font Awesome in a Rails 4 project. What is the best way to get this working including Sass support?

Original source