Module: Foobara::CommandPatternImplementation::Concerns::Runtime::ClassMethods

Defined in:
foobara-0.2.2/projects/command/src/command_pattern_implementation/concerns/runtime.rb

Instance Method Summary collapse

Instance Method Details

#runObject



18
19
20
# File 'foobara-0.2.2/projects/command/src/command_pattern_implementation/concerns/runtime.rb', line 18

def run(...)
  new(...).run
end

#run!Object



22
23
24
# File 'foobara-0.2.2/projects/command/src/command_pattern_implementation/concerns/runtime.rb', line 22

def run!(...)
  new(...).run!
end