Currently we have a Rails application but I have one question regarding the assets precompilation.
Each time that I edit one file (stylesheet or javascript file), we have to run:
bundle exec rake assets:precompile
…and then upload everything again, even those files that didn’t changed at all.
Is there a way to compile only the edited files and the manifest.yml file?
Thanks in advance.
i also had such a question, googled a lot and found one gem called: guard-rails-assets
It compiles the assets within Rails 3.1 application whenever those change.
For example, you can do this:
Check it out