Class: Object

Inherits:
BasicObject
Defined in:
lib/eac_cli/patches/object/runner_with.rb

Instance Method Summary collapse

Instance Method Details

#runner_with(*runners, &block) ⇒ Object



8
9
10
11
12
13
14
15
16
# File 'lib/eac_cli/patches/object/runner_with.rb', line 8

def runner_with(*runners, &block)
  include ::EacCli::Runner
  enable_simple_cache
  enable_console_speaker
  runners.each do |runner|
    include runner_with_to_module(runner)
  end
  runner_definition(&block) if block
end