Is there a built-in way to determine if an asset exists without resorting to File.exists?(File.join(Rails.root, "foo", "bar", "baz")) and that looks through the asset paths.

My app goes and fetches images from a remote server on a Resque queue; until we have the image downloaded I want to serve a placeholder image. Currently I'm using File.exists... but this means hard-coding a path, which sucks, or looking through the configured asset paths. It seems like this should be there already, but I can't find it in the docs.

link|improve this question
Looks like Joe's answer is bang on. You gonna mark it as correct? – Josh Pinter Apr 14 at 18:01
feedback

1 Answer

Given an image in app/assets/images/lolshirts/theme/bg-header.png,

Lolshirts::Application.assets.find_asset 'lolshirts/theme/bg-header.png'
 => #> Sprockets::StaticAsset:0x80c388ec pathname="/Users/joevandyk/projects/tanga/sites/lolshirts/app/assets/images/lolshirts/theme/bg-header.png", mtime=2011-10-07 12:34:48 -0700, digest="a63cc84aca38e2172ae25de3d837c71a">

Lolshirts::Application.assets.find_asset 'notthere.png'
 => nil 
link|improve this answer
Just a note... If you pass a path with a leading slash, you'll get an exception if the asset doesn't exist instead of the nice nil – dwhite Dec 14 '11 at 14:03
@dwhite Passing '/notthere.png' still produces a nil on Rails 3.2 – Josh Pinter Apr 14 at 18:00
feedback

Your Answer

 
or
required, but never shown

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