class Dappgen::Machines::DebugMachine
Public Instance Methods
cleanup(_)
click to toggle source
# File lib/dappgen/machines/debug_machine.rb, line 27 def cleanup(_) p ['cleanup'] end
copy_base(arg)
click to toggle source
# File lib/dappgen/machines/debug_machine.rb, line 15 def copy_base(arg) p ['copy_base', arg] end
generate(arg, opts)
click to toggle source
# File lib/dappgen/machines/debug_machine.rb, line 23 def generate(arg, opts) p ['generate', arg, opts] end
remove(arg)
click to toggle source
# File lib/dappgen/machines/debug_machine.rb, line 19 def remove(arg) p ['remove', arg] end
set_thing(thing, opts)
click to toggle source
# File lib/dappgen/machines/debug_machine.rb, line 6 def set_thing(thing, opts) puts "Debugging '#{thing}' generation" p ['set_thing', thing, opts] end
setdir(arg)
click to toggle source
# File lib/dappgen/machines/debug_machine.rb, line 11 def setdir(arg) p ['setdir', arg] end