Sha256: 4c825f5e279f3e43c6001723c3c744400f66a73f5982875df5b5033ba2a87860
Contents?: true
Size: 1.37 KB
Versions: 19
Compression:
Stored size: 1.37 KB
Contents
unless defined?(Sass::RAILS_LOADED) Sass::RAILS_LOADED = true # Reverse-merging (we're in Rails, anyway) so we dont' clobber what's already been defined further up-stream Sass::Plugin.options.reverse_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
19 entries across 19 versions & 2 rubygems