Remove unloadable from the monkey patches for Liquid.

It turns out in this case or core patches, unloadable actually breaks in
development mode. Did I already mention that I hate the Rails reloader?
This commit is contained in:
Holger Just 2012-01-17 19:38:28 +01:00
parent e1ecae83b3
commit c313ed2d25
3 changed files with 0 additions and 6 deletions

View File

@ -19,8 +19,6 @@ module ChiliProject
def self.included(base)
base.send(:include, InstanceMethods)
base.class_eval do
unloadable
alias_method_chain :render_all, :cleaned_whitespace_and_cache
end
end

View File

@ -19,8 +19,6 @@ module ChiliProject
def self.included(base)
base.send(:include, InstanceMethods)
base.class_eval do
unloadable
alias_method_chain :handle_error, :formatting
end
end

View File

@ -20,8 +20,6 @@ module ChiliProject
def self.included(base)
base.extend(ClassMethods)
base.class_eval do
unloadable
@@filters = []
end
end