Think I'm going mad on this one.

I am playing with rails 3.1 and I am having issues with images.

I have put all my images for my admin theme in the assets folder within a folder called admin. then

I link to it like normal ie.

# Ruby    
image_tag "admin/file.jpg" .....
#CSS
.logo{ background:url('/assets/images/admin/logo.png');

FYI. Just for testing I am not using the asset_path tag just yet as I have not compiled my assets.

Ok all good so far until I decided to update an image. I replaced some colors but on reload the new styled image is not showing. If I view the image directly in the browser its still showing the old image. Going one step further I destroyed the admin images folder. But it has broken nothing all the images are still being displayed. And yes I have cleared my cache and have tried on multiple browsers.

Is there some sort of image caching going on? This is just local development using pow to serve the pages.

Even destroying the whole images folder the images are still being served.

Am I missing something?

link|improve this question

68% accept rate
1  
that's not the case with 3.1 using the asset pipeline. You would use the command rake assets:precompile which will compress those files and move them to the public file – Lee Jun 2 '11 at 11:25
1  
Well moving them to the public folder worked, all a bit strange as they worked fine being served from the assets folder. Maybe have to wait for more docs on 3.1. – Lee Jun 2 '11 at 11:36
2  
I understand your frustration. Apparently release candidates don't get documented very well. – tybro0103 Jun 21 '11 at 18:55
Leave them in assets, just don't include a folder path at all. See my answer below. – Andrew Jun 25 '11 at 19:49
feedback

5 Answers

In 3.1 you just get rid of the 'images' part of the path. So an image that lives in /assets/images/example.png will actually be accessible in a get request at this url - /assets/example.png

Because the assets/images folder gets generated along with a new 3.1 app, this is the convention that they probably want you to follow. I think that's where image_tag will look for it, but I haven't tested that yet.

Also, during the RailsConf keynote, I remember D2h saying the the public folder should not have much in it anymore, mostly just error pages and a favicon.

link|improve this answer
Yea I have played with this allot and they have some way to go to make it easier. Yes putting them in my assets folder works but then you can use the assets tag. So I am waiting to see what more info comes out. – Lee Jun 8 '11 at 10:22
thanks helped me with my issue! – triad Mar 20 at 1:30
feedback

You'll want to change the extension of your css file from .css.scss to .css.scss.erb and do:

background-image:url(<%=asset_path "admin/logo.png"%>);

You may need to do a "hard refresh" to see changes. CMD+SHIFT+R on OSX browsers.

In production, make sure

rm -rf public/assets    
bundle exec rake assets:precompile RAILS_ENV=production

happens upon deployment.

link|improve this answer
23  
There are new image helpers in sass: image_url, image_path,... More can be found here: edgeguides.rubyonrails.org/asset_pipeline.html No need to use erb as a preprocessor anymore – Martin Wawrusch Aug 13 '11 at 7:29
ah good to know – tybro0103 Aug 15 '11 at 1:03
1  
I tried the sass-rails helpers (image_url and image-url) into a css.scss file but it does not seems to be interpreted. Any clue ? – invaino Aug 17 '11 at 18:08
@invaino Do you have sass-rails instead of just sass in your Gemfile? – Jakub Hampl Sep 16 '11 at 13:43
2  
The generated scss files are named .css.scss by default, no shitting of the bed has happened yet – Adrian Macneil Nov 14 '11 at 3:14
show 4 more comments
feedback

For what it's worth, when I did this I found that no folder should be include in the path in the css file. For instance if I have app/assets/images/example.png, and I put this in my css file...

div.example { background: url('example.png'); }

... then somehow it magically works. I figured this out by running the rake assets:precompile task, which just sucks everything out of all your load paths and dumps it in a junk drawer folder: public/assets. That's ironic, IMO...

In any case this means you don't need to put any folder paths, everything in your assets folders will all end up living in one huge directory. How this system resolves file name conflicts is unclear, you may need to be careful about that.

Kind of frustrating there aren't better docs out there for this big of a change.

link|improve this answer
1  
This is what worked for me. – Guided33 Nov 4 '11 at 5:08
2  
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:12
3  
This "magically works" because the css file and the images are in the same location. CSS file references are relative to the location of the css file. – Bill Leeper Nov 22 '11 at 21:04
feedback

when referencing images in CSS or in an IMG tag, use image-name.jpg

while the image is really located under ./assets/images/image-name.jpg

link|improve this answer
I think this is wrong when it comes to CSS - using rails 3.1.0.rc4 when I use background: url('sort_asc_disabled.png') it works for the file app/assets/images/sort_asc_disabled.png. – wonderfulthunk Jun 27 '11 at 20:45
@wonderfulthunk i fixed it. thanks for pointing it out. – Tilo Nov 18 '11 at 17:44
feedback

http://railscasts.com/episodes/279-understanding-the-asset-pipeline

This railscast (Rails Tutorial video on asset pipeline) helps a lot to explain the paths in assets pipeline as well. I found it pretty useful, and actually watched it a few times.

The solution I chose is @Lee McAlilly's above, but this railscast helped me to understand why it works. Hope it helps!

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.