ndbroadbent / turbo-sprockets-rails3

Speeds up your Rails 3 assets:precompile by only recompiling changed files, and only compiling once to generate all assets
MIT License
976 stars 78 forks source link

It does not support deploy rollback #105

Open Pranab16 opened 9 years ago

Pranab16 commented 9 years ago

@ndbroadbent, Turbo sprockets seems to fail for the following case:

  1. Make some changes in existing css file in a branch.
  2. Run assets:precompile rake task.
  3. The css file will be compiled by this gem.
  4. Now go to old commit after which css file was modified.
  5. The css file will not be compiled and it still contains the changes done to the css file in the later commit.

Expected Result: The css file should be compiled again as it has been restored to previous state.