From 0c62c4b994eea5e65bd0957055096d810ab547db Mon Sep 17 00:00:00 2001 From: manson Date: Fri, 6 Feb 2015 17:36:37 +0800 Subject: [PATCH] fix development mode not using precompiled aseets --- config/environments/development.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/environments/development.rb b/config/environments/development.rb index ae34a24..2ddb972 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -24,6 +24,7 @@ Orbit::Application.configure do # This option may cause significant delays in view rendering with a large # number of complex assets. config.assets.debug = true + config.assets.digest = true config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address => "localhost", :port => 1025 } config.action_mailer.default_url_options = { host: "localhost:3000", protocol: "http" }