I have a jpg in my /app/assets/images directory and am using it as a background with the following CSS.
body {
background-image: image_url('metal_texture.jpg')
}
The asset_url helper also works in this case. Since the Rails 4 asset pipeline doesn't care which directory in /app/assets that the file is placed, is there a reason to use image_url vs asset_url?