Rails只是在开发模式下压缩javascript但我不需要。 这是config / environments / development.rb
# Do not compress assets
config.assets.compress = false
# Expands the lines which load the assets
config.assets.debug = true
Rails版本是3.2.8但也尝试过3.2.9-rc3,3.1.8并不适用于我的应用程序,因为它是在3.2.8中创建的
答案 0 :(得分:3)
我刚刚发现rails存在时会提供预编译资产,而不是来自app / catalog的资产。它需要删除它们以使Rails像我需要的那样工作。
rake assets:clean
我相信Rails在开发模式下不能这样做。