Does anyone know how to add another folder to the asset pipeline in Rails 3.1?

I'd like to serve app/assets/fonts the same way app/assets/images is served.

link|improve this question

feedback

3 Answers

up vote 28 down vote accepted

Andrew, app/assets/fonts is actually already in your asset load path, along with images. So you can just point to the asset in the same way: <%= asset_path('/Ubuntu/Ubuntu-R-webfont.eot') %>[1] or how ever you are referencing your images.

It took me a while to wrap my head around this as well. I still don't know what happens if there's a file with the same name in app/assets/fonts and app/assets/images.

[1] Assuming you have a font at app/assets/fonts/Ubuntu/Ubuntu-R-webfont.eot

link|improve this answer
9  
For what it's worth, I tried this and it didn't seem to work. Then I guessed at config.assets.paths << "#{Rails.root}/app/assets/fonts" and that worked. I think you're right that anything under /assets is supposed to be included automatically, but for some reason for me it was giving 404 until I added the line above to my application.rb file. I'm going to accept your answer though, because I think it will be correct when the release is finalized, and because with this comment tacked on anyone who reads it can figure it out :) – Andrew Jun 29 '11 at 1:09
9  
I just stumbled upon this too, and it works with the default settings, BUT the directories are scanned during app initialization, so if you add a folder like fonts after your server is running you will get a 404. So always restart when you add a directory in your asset pipeline. – Martin Wawrusch Aug 13 '11 at 8:01
1  
To elaborate on files of the same name: When there are naming conflicts, the first path that appears in the config.assets.paths array is the file that is chosen. This can be avoided by using the asset_path() helper and specifying the directory. – AnomalousThought Nov 14 '11 at 19:16
feedback

Andrew, Jason, agreed. FWIW I put this in my config/application.rb next to

  # Enable the asset pipeline
config.assets.enabled = true
config.assets.paths << "#{Rails.root}/app/assets/fonts"
link|improve this answer
2  
From what I've seen the preferred way of writing this is now Rails.root.join('app', 'assets', 'fonts') – ssorallen May 15 at 16:32
feedback

I can confirm it works without adding the new paths to the config in Rails 3.1.0.rc4 (and presumedly higher). I bounced my server, you might do the same.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.