class SwitchDb::Command::Base

Public Class Methods

new(reference_set:) click to toggle source
# File lib/switch_db/command/base.rb, line 4
def initialize(reference_set:)
  @reference_set = reference_set
end

Public Instance Methods

run(_arguments = {}) click to toggle source
# File lib/switch_db/command/base.rb, line 8
def run(_arguments = {})
  raise NotImplementedError, 'not implemented yet'
end