Eric Allam

Results 149 comments of Eric Allam

It should, we use it on codeschool.com and our course apps. Are you configuring the gem with the origin in your config/environments/production.rb? Like so: `config.font_assets.origin = "http://example.com"` On Feb 7,...

Ah. That's probably because the asset is then served from public/ in production, and no longer hits the rails app. Since it doesn't hit the rails app, it won't be...

The font assets must be served by the rails process for this gem to work (because Rails injects those headers into the response). It's possible your static assets are being...

I'd be happy to accept a PR and test case for this change. Send it along and I'll take a look :)

I just merged another patch that I think should solve this issue too. If you get a chance could you test it out and report back?

Could you expand this PR to include some specs to demonstrate the features working? To run the specs all you have to do is `bundle install` and then `bundle exec...

@dmur and @sandeep45, I can't merge this PR until there are specs proving this functionality works. It would be irresponsible of me to just merge in some code that is...

This gem only works if you are **NOT** precompiling your assets in production, because it requires asset requests to go through the Rails app, and if you precompile your assets...

@madAle thanks for the PR! could you explain what exactly this is fixing?