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?
3 Answers
5
votes
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
1
votes