Sha256: c81afc6ba8eaa184ef1dcde44d5db033690fc8102d1f5ff5b4fc3a8580653dee
Contents?: true
Size: 1.21 KB
Versions: 34
Compression:
Stored size: 1.21 KB
Contents
unless defined?(Sass::RAILS_LOADED) Sass::RAILS_LOADED = true Sass::Plugin.options.merge!(:template_location => Haml::Util.rails_root + '/public/stylesheets/sass', :css_location => Haml::Util.rails_root + '/public/stylesheets', :cache_location => Haml::Util.rails_root + '/tmp/sass-cache', :always_check => Haml::Util.rails_env == "development", :quiet => Haml::Util.rails_env != "production", :full_exception => Haml::Util.rails_env != "production") if defined?(ActionController::Metal) # Rails >= 3.0 require 'sass/plugin/rack' ActionController::Metal.use(Sass::Plugin::Rack) elsif defined?(ActionController::Dispatcher) && defined?(ActionController::Dispatcher.middleware) # Rails >= 2.3 require 'sass/plugin/rack' ActionController::Dispatcher.middleware.use(Sass::Plugin::Rack) else module ActionController class Base alias_method :sass_old_process, :process def process(*args) Sass::Plugin.check_for_updates sass_old_process(*args) end end end end end
Version data entries
34 entries across 34 versions & 2 rubygems