We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa0cf7c + 6245157 commit 550bce4Copy full SHA for 550bce4
lib/sprockets/railtie.rb
@@ -222,7 +222,7 @@ def self.build_manifest(app)
222
if config.assets.compile
223
app.assets = self.build_environment(app, true)
224
app.routes.prepend do
225
- mount app.assets => config.assets.prefix
+ mount app.assets, at: config.assets.prefix
226
end
227
228
test/test_quiet_assets.rb
@@ -21,6 +21,7 @@ def setup
21
@app = Class.new(Rails::Application)
22
@app.config.eager_load = false
23
@app.config.logger = ActiveSupport::Logger.new("/dev/null")
24
+ @app.config.active_support.to_time_preserves_timezone = :zone
25
26
FileUtils.mkdir_p(ASSET_PATH)
27
File.open(ASSET_PATH.join("manifest.js"), "w") { |f| f << "" }
0 commit comments