Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 14th, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Asset Pipeline changes
  2. There's a manifest it has a bug rails/rails#2772, which means if you use `config.assets.prefix`, you need to add `config.assets.manifest = false` to your `config/application.rb`.
  3.  
  4. Also, there is a new default in the production environment template.
  5.  
  6. ```ruby
  7.    config.assets.digest=true
  8. ```
  9.  
  10. Without that, precompiled assets won't work correctly all the time.