aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/asset_paths.rb
diff options
context:
space:
mode:
authorDmitry Vorotilin <d.vorotilin@gmail.com>2012-09-01 15:58:24 +0400
committerDmitry Vorotilin <d.vorotilin@gmail.com>2012-09-01 16:22:40 +0400
commit3a6e8e464c0d8b77d11fbfcf3d650423b060394c (patch)
treed255d82fa056cb77168b771641383655f0b086b8 /actionpack/lib/action_view/asset_paths.rb
parent5f99bdbec2d3ffab416795ac48e350863e0e17d7 (diff)
downloadrails-3a6e8e464c0d8b77d11fbfcf3d650423b060394c.tar.gz
rails-3a6e8e464c0d8b77d11fbfcf3d650423b060394c.tar.bz2
rails-3a6e8e464c0d8b77d11fbfcf3d650423b060394c.zip
Sprockets-rails tests fail
Method invalid_asset_host! was delegated to controller but sprockets compile assets in their own scope without controller. And if we set asset_host with second parameter it should raise error through invalid_asset_host!. But since controller is nil it cannot be reached.
Diffstat (limited to 'actionpack/lib/action_view/asset_paths.rb')
-rw-r--r--actionpack/lib/action_view/asset_paths.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/asset_paths.rb b/actionpack/lib/action_view/asset_paths.rb
index 3ddd8bd552..a9216c4333 100644
--- a/actionpack/lib/action_view/asset_paths.rb
+++ b/actionpack/lib/action_view/asset_paths.rb
@@ -1,6 +1,6 @@
require 'zlib'
require 'active_support/core_ext/file'
-require 'active_support/core_ext/module/delegation'
+require 'action_controller/metal/exceptions'
module ActionView
class AssetPaths #:nodoc:
@@ -8,8 +8,6 @@ module ActionView
attr_reader :config, :controller
- delegate :invalid_asset_host!, :to => :controller, :prefix => false
-
def initialize(config, controller = nil)
@config = config
@controller = controller
@@ -99,6 +97,10 @@ module ActionView
@config.default_asset_host_protocol || (has_request? ? :request : :relative)
end
+ def invalid_asset_host!(help_message)
+ raise ActionView::MissingRequestError, "This asset host cannot be computed without a request in scope. #{help_message}"
+ end
+
# Pick an asset host for this source. Returns +nil+ if no host is set,
# the host if no wildcard is set, the host interpolated with the
# numbers 0-3 if it contains <tt>%d</tt> (the number is the source hash mod 4),