Class MerbHandler
In: lib/sass/plugin/merb.rb
Parent: Object

Methods

External Aliases

process -> process_without_sass

Public Instance methods

process(request, response)

Alias for process_with_sass

[Source]

    # File lib/sass/plugin/merb.rb, line 44
44:       def process_with_sass(request, response)
45:         if !Sass::Plugin.checked_for_updates ||
46:             Sass::Plugin.options[:always_update] || Sass::Plugin.options[:always_check]
47:           Sass::Plugin.update_stylesheets
48:         end
49: 
50:         process_without_sass(request, response)
51:       end

[Validate]