Every time I pull code into my repository after making changes to JS or CSS files, I run the following commands:
rake assets:clean
rake assets:precompile
I've got quite a bit of assets, so this process always takes at least a minute. Is there any way to get it to go faster? For example, if I've only changed CSS, is there a way to tell it to only focus on CSS files and not to bother cleaning and precompiling JS?
Edit: Oops, I should have specified that this is on production. I'm aware I don't need to precompile assets on development :)