Skip to content

Instantly share code, notes, and snippets.

@softr8
Created August 27, 2014 23:21
Show Gist options
  • Save softr8/d1d6195105ed25facc5d to your computer and use it in GitHub Desktop.
Save softr8/d1d6195105ed25facc5d to your computer and use it in GitHub Desktop.
Fonts without CDN in a Rails app
config.action_controller.asset_host = proc do |source|
if source =~ /(ttf|ttc|otf|eot|woff|svg)$/
"https://www.domain.com"
else
"https://cdn#{Digest::MD5.hexdigest(source).to_i(16) % 4 }.domain.com"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment