Font-Face not Working with Rails 3.1 - ruby-on-rails

I just upgraded to Rails 3.1 and the Asset Pipeline and I can't figure out why my font-face is not being read in anymore. I've tried the answers in this post (with no luck):
Using #font-face with Rails 3.1 app?
Currently, I'm trying the selected solution. I have a fonts folder under app/assets. The file name is correct and exists in the fonts directory.
In my Application.rb
config.assets.paths << "#{Rails.root}/app/assets/fonts"
I've also tried, from the Rails Guide (http://guides.rubyonrails.org/asset_pipeline.html):
config.assets.paths << Rails.root.join("app", "assets", "fonts")
With this code, the path maps to this when the code is run
src: url('/assets/League_Gothic-webfont.eot
In my CSS:
#font-face {
font-family: "League_Gothic";
src: url('<%= asset_path('League_Gothic-webfont.eot') %>');
font-weight: normal;
font-style: normal;
}
When I try the other solution, essentially hard coding the path:
src: url(/assets/fonts/League_Gothic-webfont.eot);
I get this error when I click on the link in the source code of the page:
No route matches [GET] "/assets/fonts/League_Gothic-webfont.eot"

Add this to application.rb
# Enable the asset pipeline
config.assets.enabled = true
config.assets.paths << "#{Rails.root}/vendor/assets/fonts"
# Precompile additional assets
config.assets.precompile += %w( .svg .eot .woff .ttf )
Then add this to css or scss before the font is used
#font-face {
font-family: 'Museo300Regular';
src: font-url('Museo300-Regular-webfont.eot');
src: local('Museo300Regular'),
font-url('Museo300-Regular-webfont.eot?#iefix') format("embedded-opentype"),
font-url('Museo300-Regular-webfont.woff') format("woff"),
font-url('Museo300-Regular-webfont.ttf') format("truetype"),
font-url('Museo300-Regular-webfont.svg#Museo300Regular') format("svg") ;
font-weight: normal;
font-style: normal;
}

You shouldn't have to make those changes in application.rb.
But what's probably your problem is that you're doing "assets/fonts/myfont.eof" when you should be doing "assets/myfont.eof". Don't address fonts, images, etc. directory names if they're assets, just call them from assets/
You may have to get rid of that stuff that you changed in application.rb in order for this to work. I dunno, try it with and without.
Also, from my CSS file on a project I'm working on:
#font-face
{
font-family: ubuntu;
src: url("/assets/Ubuntu-R.ttf");
}
This might help.

Related

Rails 5 - vendor assets are not loaded on production (fonts only)

It's perfectly working in development, but not in production. It's not finding the following files:
/assets/fontello.woff
/assets/fontello.ttf
Here is the setup:
fonts files:
assets.rb
Rails.application.config.assets.paths << Rails.root.join('app', 'vendor', 'assets', 'fonts')
Rails.application.config.assets.precompile << /\.(?:svg|eot|woff|ttf)\z/
fontello.css
#font-face {
font-family: 'fontello';
src: url('/assets/fontello.eot');
src: url('/assets/fontello.eot#iefix') format('embedded-opentype'),
url('/assets/fontello.woff') format('woff'),
url('/assets/fontello.ttf') format('truetype'),
url('/assets/fontello.svg#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
As I said, everything is working fine in development. I have try a lot of things. For example:
moving the fonts in the public folder (as my images there are loaded)
add the following line in the assets.rb:
Rails.application.config.assets.precompile += [/^[-_a-zA-Z0-9]*\..*/]
but nothing worked.
Could you advise anything else to try?
What does ls public/assets outputs in production?
Probably your files are there with a digest (ex. fontello-XXXX.ttf). In this case you have to use the font helpers in your sass (not css) - ex. in your font-family block: src:font-url('fontello.ttf')

web fonts not loading through asset pipeline in production mode

I'm trying to load some webfonts from myfonts.com into my rails application running on DigitalOcean. It seems to work precompile just fine and it works locally in 'development' mode but doesn't load the files in 'production' mode.
Other answers to these problems point to the asset pipeline but the solutions don't help.
My folder structure looks like this:
app
|assets
||fonts
|||*various font files*
main.scss
#import url("//hello.myfonts.net/count/30b86b");
#font-face {
font-family: 'SofiaProExtraLight';
src: asset-url('30B86B_0_0.eot');
src: asset-url('30B86B_0_0.eot?#iefix') format('embedded-opentype'),asset-url('30B86B_0_0.woff2') format('woff2'),asset-url('30B86B_0_0.woff') format('woff'),asset-url('30B86B_0_0.ttf') format('truetype');
}
#font-face {
font-family: 'SofiaProSemiBold';
src: asset-url('30B86B_1_0.eot');
src: asset-url('30B86B_1_0.eot?#iefix') format('embedded-opentype'),asset-url('30B86B_1_0.woff2') format('woff2'),asset-url('30B86B_1_0.woff') format('woff'),asset-url('30B86B_1_0.ttf') format('truetype');
}
#font-face {
font-family: 'SofiaProRegular';
src: asset-url('30B86B_2_0.eot');
src: asset-url('30B86B_2_0.eot?#iefix') format('embedded-opentype'),asset-url('30B86B_2_0.woff2') format('woff2'),asset-url('30B86B_2_0.woff') format('woff'),asset-url('30B86B_2_0.ttf') format('truetype');
}
Just add this into your application.rb:
module MyApp
class Application < Rails::Application
# ...
config.assets.paths += %w(fonts)
end
end

Rails 4.2: "Assets should not be requested directly without their digests"

On Rails 4.2.0.beta1 I get an error:
Assets should not be requested directly without their digests: Use the helpers in ActionView::Helpers to request fonts/source-sans-pro.woff
The stylesheet:
#font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url(/assets/source-sans-pro.woff) format('woff');
}
The configuration is:
config.serve_static_assets = true
config.assets.js_compressor = :uglifier
config.assets.compile = true
config.assets.digest = true
config.assets.version = '1.0'
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
config.assets.precompile += %w(.svg .eot .woff .ttf)
Sure I can disable digests and it works again, but I'm interested in using them. Therefore, how do I make use of digests when I need to request source-sans-pro.woff?
Please note that I place the fonts in assets/fonts directory, not the public/ directory. I don't see a difference between images and fonts, so I want to keep them under the same directory - app/assets.
Use the font_path helper. You have to be sure the stylesheet has the filename.css.scss format for this to work.
#font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url(font_path('source-sans-pro.woff')) format('woff');
}

Font awesome Rails won't work after deploying. It looks like bad Unicode characters. Why?

In my local machine fontawesome is working perfectly (Im using 4.1 gem). But when uploaded to Heroku it stops working. I looks like bad unicode characters. I have included the following line in config and precompiled assets but it didn't work :
config.assets.paths << Rails.root.join(‘app’, ‘assets’, ‘fonts’)
config.assets.precompile += %w( .svg .eot .woff .ttf )
Please look at this image :
On the left is the problem. On the right is the correct version. What might be the problem? Here's the link to the Heroku app : http://fast-garden-6871.herokuapp.com/
Update It looks like /assets/fontawesome-webfont.eot is missing in the production machine!
In your css file, change url to asset-url under #font-face.
Also did you precompile assets after deployment?
RAILS_ENV=production rake assets:precompile
Finally fixed it! In custom.css I added the following lines:
#font-face {
font-family: 'FontAwesome';
src: asset-url('fontawesome-webfont.eot');
src: asset-url('fontawesome-webfont.eot?#iefix') format('embedded-opentype'), asset-url('fontawesome-webfont.woff') format('woff'), asset-url('fontawesome-webfont.ttf') format('truetype'), asset-url('fontawesome-webfont.svg#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
The problem was, rails will generate the font file with a hash like it generate css files. But the css is not updated with this new generated file. So the system can't find the font. With the above code, the system will assign the right url!

Heroku font assets not working

Placed fonts in app/assets/fonts
Added
Add the fonts path
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
Precompile additional assets
config.assets.precompile += %w( .svg .eot .woff .ttf )
in production.rb and development.rb
Fonts linked in css like:
#font-face {
font-family: 'Icomoon';
src:url('/assets/icomoon.eot');
src:url('/assets/icomoon.eot?#iefix') format('embedded-opentype'),
url('/assets/icomoon.svg#icomoon') format('svg'),
url('/assets/icomoon.woff') format('woff'),
url('/assets/icomoon.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
Seems to work in development. But in HEROKU is does not seem to work. It cannot find /assets/icomoon.eot .
The solution in this link does not seem to work
Using fonts with Rails asset pipeline
Assets like fonts will work on development but not production if you are using regular old css to locate your assets rather than the asset pipeline helpers. Rails 4 added breaking changes to the asset pipeline to encourage people to use it properly, and not use the old css method of referencing assets.
To resolve this, you need to use the new asset pipeline helpers to point to the fingerprinted, cached versions of your fonts. Rather than url (which does not use the asset pipeline), you need to use font-url (which does use it). To do this, you may have to use Sass or embed ERB in your stylesheet.
Example (using SCSS):
#font-face {
font-family: 'Icomoon';
src: font-url("/assets/icomoon.eot");
src: font-url("/assets/icomoon.eot?#iefix") format("embedded-opentype"), font-url("/assets/icomoon.svg#icomoon") format("svg"), font-url("/assets/icomoon.woff") format("woff"), font-url("/assets/icomoon.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
See here: http://guides.rubyonrails.org/asset_pipeline.html#coding-links-to-assets
In light of the comments received on this answer (and the unnecessary downvotes) I've amended my answer as follows:
It seems Rails has now created a way to handle fonts in the assets folder. It's called font-path and works like this:
If you add a custom font to your /assets/fonts folder, you can use the
font-path helper to access the files within. This can then be used
in your stylesheets & other assets using the font-path helper:
|-app/
|---assets/
|-----fonts/
|-----images/
|-----javascripts/
|-----stylesheets/
#font-face {
font-family:'icofonts';
src:font-url('icofonts.eot');
src:font-url('icofonts.eot?#iefix') format('embedded-opentype'),
...
}
This works for precompiled assets (which Heroku does anyway), and static assets. If you want the pre-Rails 4 way of achieving this, please refer to my answer below:
We've got fonts working on Heroku here: http://firststop.herokuapp.com (it's in demo still)
Here is our CSS for it:
#assets/application.css
/*-- Akagi Font --*/
#font-face {
font-family: 'akagi';
src: url('fonts/akagi-th-webfont.eot'),
src: url('fonts/akagi-th-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/akagi-th-webfont.woff') format('woff'),
url('fonts/akagi-th-webfont.ttf') format('truetype'),
url('fonts/akagi-th-webfont.svg#akagithin') format('svg');
font-weight: 300;
font-style: normal;
}
#font-face {
font-family: 'akagi';
src: url('fonts/akagi-bk-webfont.eot');
src: url('fonts/akagi-bk-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/akagi-bk-webfont.woff') format('woff'),
url('fonts/akagi-bk-webfont.ttf') format('truetype'),
url('fonts/akagi-bk-webfont.svg#akagibook') format('svg');
font-weight: 400;
font-style: normal;
}
#font-face {
font-family: 'akagi';
src: url('fonts/akagi-sb-webfont.eot');
src: url('fonts/akagi-sb-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/akagi-sb-webfont.woff') format('woff'),
url('fonts/akagi-sb-webfont.ttf') format('truetype'),
url('fonts/akagi-sb-webfont.svg#akagisemibold') format('svg');
font-weight: 500;
font-style: normal;
}
We put our fonts into the /stylesheets/fonts folder
We just do the standard precompile fonts stuff to get all CSS working on Heroku, and it works. I suspect your paths are not correct. Maybe try moving your fonts directory into your /assets/stylesheets folder :)
Actually, I just tried the solution proposed in this comment, and it worked perfectly. Seems you only have to change the regex for the precompile instruction in order for Heroku to correctly find the asset.
i.e. change config.assets.precompile += %w( .svg .eot .woff .ttf ) to config.assets.precompile << /\.(?:svg|eot|woff|ttf)$/.
Edit: It might also be necessary to add RAILS_ENV=production when you run the assets:precompile rake task, as per Heroku's docs.
Rails 4
# config/application.rb
config.assets.paths << Rails.root.join("app", "assets", "fonts")
config.assets.precompile += %w(.svg .eot .woff .ttf)
# app/assets/stylesheets/foundation-icons.css.scss
#font-face {
font-family: "foundation-icons";
src: asset-url("foundation-icons.eot");
src: asset-url("foundation-icons.eot?#iefix") format("embedded-opentype"),
asset-url("foundation-icons.woff") format("woff"),
asset-url("foundation-icons.ttf") format("truetype"),
asset-url("foundation-icons.svg#fontcustom") format("svg");
font-weight: normal;
font-style: normal;
}
Try removing /assets/ from all of your font paths.
#font-face {
font-family: 'Icomoon';
src:url('icomoon.eot');
src:url('icomoon.eot?#iefix') format('embedded-opentype'),
url('icomoon.svg#icomoon') format('svg'),
url('icomoon.woff') format('woff'),
url('icomoon.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
Also try removing scaffolds.css if it's in assets/stylesheets.
I solved the problem by using a combination of all the answers and comments. My example uses the Foundation Icon Fonts.
In your application.rb file add the following:
config.assets.precompile << /\.(?:svg|eot|woff|ttf)$/
Rename your application.css file to application.css.scss and use the font-url and asset-path directives:
#font-face {
font-family: "foundation-icons";
src: font-url( asset-path("foundation-icons.eot") );
src: font-url( asset-path("foundation-icons.eot?#iefix") ) format("embedded-opentype"),
font-url( asset-path("foundation-icons.woff") ) format("woff"),
font-url( asset-path("foundation-icons.ttf") ) format("truetype"),
font-url( asset-path("foundation-icons.svg#fontcustom") ) format("svg");
font-weight: normal;
font-style: normal;
}
You don't actually have to change the precompile regex or asset path.
Try to run rake assets:precompile in production mode before committing to Heroku.
rake assets:precompile RAILS_ENV=production
and make sure to reference your assets in css files using asset_path helper method.
like:
src: font-url('<%= asset_path("foundation-icons.eot")%>');
You don't need to include the /assets/fonts/ directory in config.assets.paths. According to documentation all directories included in app/assets, lib/assets or vendor/assets are automatically loaded.
http://guides.rubyonrails.org/asset_pipeline.html#asset-organization
Pipeline assets can be placed inside an application in one of three locations: app/assets, lib/assets or vendor/assets.
[...]
Besides the standard assets/* paths, additional (fully qualified) paths can be added to the pipeline in config/application.rb.
config.assets.paths << Rails.root.join("lib", "videoplayer", "flash")
Try to run Rails.application.class.config.assets.paths in console and you'll see an array of all directories inside /assets. if you add another directory and restart the console it will be automatically included inside the array and the content will be served as assets.
You don't even need config.assets.precompile += %w( .svg .eot .woff .ttf ) because all non-js-css files are already included through the default matcher Proc.
http://guides.rubyonrails.org/asset_pipeline.html#precompiling-assets
The default matcher for compiling files includes application.js, application.css and all non-JS/CSS files (this will include all image assets automatically):
[ Proc.new { |path| !%w(.js .css).include?(File.extname(path)) }, /application.(css|js)$/ ]
Try to only add the fonts directory in app/assets/ leaving all config as default and deploy your app on heroku.
Rename your .css file to .css.erb
Replace all the url('/assets/icomoon.eot') with url(<%= asset_path 'icomoon.eot' %>), etc.
You can achieve the same result by converting your css file to SASS/SCSS and using font-url() helper instead of url().
I've tried that with Rails 4 and it works even without the bits you've added to production.rb/application.rb.
After trying all the methods above, none worked for me but this is how I fixed my font problem. If the fonts work in development mode then simply do
config.assets.compile = true
in
config\environments\production.rb
There are two ways to solve this issue.
You can directly put your font files in public directory and add the path e.g /fonts/font-name in the CSS file
Add the line Rails.application.config.assets.compile = true in config/initializers/assets.rb file

Resources