Fixing a minor doc bug.

git-svn-id: svn://hamptoncatlin.com/haml/trunk@721 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2008-01-07 06:19:23 +00:00
parent 6ececddda9
commit 40279d116c
1 changed files with 4 additions and 2 deletions

View File

@ -6,8 +6,9 @@ unless defined?(Sass::RAILS_LOADED)
:always_check => RAILS_ENV != "production",
:full_exception => RAILS_ENV != "production")
module ActionController # :nodoc:
class Base # :nodoc:
# :stopdoc:
module ActionController
class Base
alias_method :sass_old_process, :process
def process(*args)
Sass::Plugin.update_stylesheets if Sass::Plugin.options[:always_update] || Sass::Plugin.options[:always_check]
@ -15,4 +16,5 @@ unless defined?(Sass::RAILS_LOADED)
end
end
end
# :startdoc:
end