I have deployed a rails app on Heroku, and I am using the twitter-bootstrap-rails gem to include twitter bootstrap. Everything works perfectly locally (and in the development en
I solved this problem by adding to config/environments/production.rb:
config/environments/production.rb
config.assets.precompile += %w( '.woff', '.eot', '.svg', '.ttf' )
Also I have next string in Gemfile, without github path:
Gemfile
gem 'twitter-bootstrap-rails'
With this configuration Glyphicons displayed well on Heroku.