class NoPatternNoAction

Intended to be used internaly when there are no patterns to act on. Instead of using this, pass nil to DatalakceyIO.send

Attributes

command[RW]
exit[RW]
generators[RW]
identifier[R]
message[RW]
status[RW]

Public Class Methods

new() click to toggle source
# File lib/datalackeylib.rb, line 136
def initialize
  @exit = nil
  @command = nil
  @status = nil
  @message = nil
  @generators = []
end

Public Instance Methods

best_match(_) click to toggle source
# File lib/datalackeylib.rb, line 148
def best_match(_)
  [ nil, [] ]
end
set_identifier(identifier) click to toggle source
# File lib/datalackeylib.rb, line 144
def set_identifier(identifier)
  @identifier = identifier
end