# File lib/sass/rails/template_handlers.rb, line 70
    def sass_options(scope)
      importer = self.importer(scope)
      options = sass_options_from_rails(scope)
      load_paths = (options[:load_paths] || []).dup
      load_paths.unshift(importer)
      options.merge(
        :filename => eval_file,
        :line => line,
        :syntax => syntax,
        :importer => importer,
        :load_paths => load_paths,
        :custom => {
          :resolver => Resolver.new(scope)
        }
      )
    end