I'm trying to replicate the basics of the asset pipeline introduced in rails 3.1 in my rails 3.0 app.
So far, I've got something like this: https://gist.github.com/1112393.
It works great:
- I have my assets in app/assets/, lib/assets, vendor/assets...
- They're all served at /assets
- I can use everything sprockets 2 offers etc...
The thing is, I don't want the rails app to serve static assets. The server should do it. That's why you can precompile assets in rails 3.1, if I understood correctly. So I've made a rake task that does just that (using the precompile method of Sprockets::Environment). And it works, I have all my assets at /public/assets/.
For instance, I have
- application-02f8c96b342b4569513d0edf39ef55eb.css
- application-505e8f472350fb1e0d15f6ad2f5e0389.js
- gallery-icons-0e922050a85718fef3cd570df4eb5845.png
But in rails 3.1, you can do something like that in your style.css.scss.erb
background: url(<%= asset_path("gallery-icons.png") %>)
and you'd get
background: url(/assets/gallery-icons-0e922050a85718fef3cd570df4eb5845.png)
in the precompiled file.
Same for stylesheet_link_tag, javascript_link_tag which are overwritten in rails 3.1 to add the hash, if I'm not mistaken.
How can I do this?
Give me every idea you can have! Thanks.