Now that we've moved to rails 4, i've found a nice trick for speeding up
asset loading:
diff --git a/config/environments/development.rb
b/config/environments/development.rb
index b869cfd…ec20428 100644
— a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -31,7 +31,7 @@ Foreman::Application.configure do
# Debug mode disables concatenation and preprocessing of assets.
# This option may cause significant delays in view rendering with a
large
# number of complex assets.
- config.assets.debug = true
-
config.assets.debug = false
Adds additional error checking when serving assets at runtime.
Checks for improperly declared sprockets dependencies.
Debugging UI issues may be a tad harder, as all the bastion assets are
combined into one file, but for day to day stuff its worth the tradeoff!
-Justin