module Haml

def self.init_rails(binding)

without modifying the file itself.
so we can change the initialization behavior
We use it rather than putting stuff straight into init.rb
which is run by Rails on startup.
This method is called by init.rb,
def self.init_rails(binding)
  # No &method here for Rails 2.1 compatibility
  %w[haml/template sass sass/plugin].each {|f| require f}
end