Fix an issue with rails 2.x due to the image_url changing modules.

This commit is contained in:
Chris Eppstein 2011-11-28 08:05:26 -08:00
parent 79d94647f9
commit 37de6efc24
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
module Compass::SassExtensions::Functions::Urls
module Compass::SassExtensions::Functions::Urls::ImageUrl
def image_url_with_rails_integration(path, only_path = Sass::Script::Bool.new(false), cache_buster = Sass::Script::Bool.new(true))
if (@controller = Sass::Plugin.rails_controller) && @controller.respond_to?(:request) && @controller.request
begin
@ -15,4 +15,4 @@ module Compass::SassExtensions::Functions::Urls
end
end
alias_method_chain :image_url, :rails_integration
end
end

View File

@ -11,7 +11,7 @@ unless defined?(Compass::RAILS_LOADED)
else
require 'compass/app_integration/rails/actionpack2x'
end
rescue LoadError, NameError
$stderr.puts "Compass could not access the rails environment."
rescue LoadError, NameError => e
$stderr.puts "Compass could not access the rails environment: #{e}"
end
end