class Slippery::Processor

Public Class Methods

new(options) click to toggle source
# File lib/slippery/processor.rb, line 5
def initialize(options)
  @options = options
end

Public Instance Methods

options() click to toggle source
# File lib/slippery/processor.rb, line 9
def options
  if defaults = self.class.const_get(:DEFAULT_OPTIONS)
    defaults.merge(@options)
  else
    @options
  end
end