In my application.css.scss I reference an image like this:

body {
    background: #7d9ec4 url(asset-path('background.png', image)) no-repeat fixed bottom center;
}

It is located in app/assets/images/background.png and it works perfectly fine in dev.

I'm deploying to Heroku, so I need to precompile the assets. After I run rake assets:precompile the comiled files show up in public/assets/ and my background.png gets this filename: background-876262e736e0b48500313d1a48005396.png(no surprise, I know it's the fingerprint).

What baffles me is that the compiled application-7665539658a117373a79cd8568f36315.css tries to load /assets/background-61d37b9fc285589fc0016694e6f8d134.png, which clearly is the wrong fingerprint.

So I deleted all files from public/assets/ and compiled again, added the new files to git (and removed the old ones), committed and pushed to Heroku - but no luck: the CSS still uses the wrong background-xyz.png.

Does anybody know how to resolve this?

link|improve this question

i think there was an issue in the Rails Github issue tracker about this. – Marian Theisen Sep 14 '11 at 6:49
Oh no... Thanks for the hint! – Wukerplank Sep 14 '11 at 6:55
@Marian: If you put this in as an answer, I'll accept it. – Wukerplank Sep 14 '11 at 6:57
feedback

1 Answer

up vote 1 down vote accepted

i think there was an issue in the Rails Github issue tracker about this: https://github.com/rails/rails/issues/2569

link|improve this answer
PS: My workaround for now: Rename the file... – Wukerplank Sep 14 '11 at 10:58
feedback

Your Answer

 
or
required, but never shown

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