Class: Relaton::Processor

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeProcessor

Returns a new instance of Processor.



7
8
9
# File 'lib/relaton/processor.rb', line 7

def initialize
  raise "This is an abstract class!"
end

Instance Attribute Details

#prefixObject (readonly)

Returns the value of attribute prefix.



5
6
7
# File 'lib/relaton/processor.rb', line 5

def prefix
  @prefix
end

#shortObject (readonly)

Returns the value of attribute short.



4
5
6
# File 'lib/relaton/processor.rb', line 4

def short
  @short
end

Instance Method Details

#get(code, date, opts) ⇒ Object



11
12
13
# File 'lib/relaton/processor.rb', line 11

def get(code, date, opts)
  raise "This is an abstract class!"
end