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 throu
Given an image in app/assets/images/lolshirts/theme/bg-header.png,
Rails.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">
Rails.application.assets.find_asset 'notthere.png'
=> nil