Class: Alter::Processor

Inherits:
Object
  • Object
show all
Defined in:
lib/alter.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(input, options = {}) ⇒ Processor

Returns a new instance of Processor.



44
45
46
47
# File 'lib/alter.rb', line 44

def initialize(input, options = {})
  @input = input
  @options = options
end

Instance Attribute Details

#inputObject (readonly)

Returns the value of attribute input.



42
43
44
# File 'lib/alter.rb', line 42

def input
  @input
end

#metaObject

Returns the value of attribute meta.



41
42
43
# File 'lib/alter.rb', line 41

def meta
  @meta
end

#optionsObject (readonly)

Returns the value of attribute options.



42
43
44
# File 'lib/alter.rb', line 42

def options
  @options
end

#outputObject

Returns the value of attribute output.



41
42
43
# File 'lib/alter.rb', line 41

def output
  @output
end