module AssMaintainer::InfoBase::Interfaces::IbMaker

Interface for class which make new InfoBase Class must implement #entry_point methodmodule Fixtures

Attributes

infobase[R]

Public Instance Methods

entry_point() click to toggle source
# File lib/ass_maintainer/info_base/interfaces.rb, line 22
def entry_point
  fail NotImplementedError
end
execute(infobase) click to toggle source
# File lib/ass_maintainer/info_base/interfaces.rb, line 17
def execute(infobase)
  @infobase = infobase
  entry_point
end