Sha256: fd6a484233d220a1629fef54e9be8319d7921a3e5a305decc22c7781563884e6

Contents?: true

Size: 1.51 KB

Versions: 645

Compression:

Stored size: 1.51 KB

Contents

unless defined?(Sass::RAILS_LOADED)
  Sass::RAILS_LOADED = true

  module Sass::Plugin::Configuration
    # Different default options in a rails envirionment.
    def default_options
      return @default_options if @default_options
      opts = {
        :quiet             => Sass::Util.rails_env != "production",
        :full_exception    => Sass::Util.rails_env != "production",
        :cache_location    => Sass::Util.rails_root + '/tmp/sass-cache'
      }

      opts.merge!(
        :always_update     => false,
        :template_location => Sass::Util.rails_root + '/public/stylesheets/sass',
        :css_location      => Sass::Util.rails_root + '/public/stylesheets',
        :always_check      => Sass::Util.rails_env == "development")

      @default_options = opts.freeze
    end
  end

  Sass::Plugin.options.reverse_merge!(Sass::Plugin.default_options)

  # Rails 3.1 loads and handles Sass all on its own
  if defined?(ActionController::Metal)
    # 3.1 > Rails >= 3.0
    require 'sass/plugin/rack'
    Rails.configuration.middleware.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

645 entries across 356 versions & 18 rubygems

Version Path
sass-3.4.9 lib/sass/plugin/rails.rb
sass-3.4.8 lib/sass/plugin/rails.rb
sass-3.4.7 lib/sass/plugin/rails.rb
sass-3.4.6 lib/sass/plugin/rails.rb
sass-3.4.5 lib/sass/plugin/rails.rb
sass-3.4.4 lib/sass/plugin/rails.rb
sass-3.4.3 lib/sass/plugin/rails.rb
sass-3.4.2 lib/sass/plugin/rails.rb
sass-3.4.1 lib/sass/plugin/rails.rb
xass-0.1.0 lib/sass/plugin/rails.rb
oreorenasass-3.4.14 lib/sass/plugin/rails.rb
oreorenasass-3.4.13 lib/sass/plugin/rails.rb
oreorenasass-3.4.12 lib/sass/plugin/rails.rb
oreorenasass-3.4.11 lib/sass/plugin/rails.rb
oreorenasass-3.4.9 lib/sass/plugin/rails.rb
oreorenasass-3.4.7 lib/sass/plugin/rails.rb
oreorenasass-3.4.5 lib/sass/plugin/rails.rb
oreorenasass-3.4.4 lib/sass/plugin/rails.rb
oreorenasass-3.4.3 lib/sass/plugin/rails.rb
oreorenasass-3.4.2 lib/sass/plugin/rails.rb