Sha256: ac5e3ce93d50964f6ad927b7c18126061d7fd383ca9447503d53e8e9f36a1271
Contents?: true
Size: 950 Bytes
Versions: 5
Compression:
Stored size: 950 Bytes
Contents
# -*- coding: utf-8 -*- # Copyright (C) 2010-2012 Rocky Bernstein <rockyb@rubyforge.net> require_relative '../../base/subsubcmd' class Trepan::Subcommand::SetAutoIrb < Trepan::SetBoolSubSubcommand unless defined?(HELP) Trepanning::SubSubcommand.set_name_prefix(__FILE__, self) HELP = "Set to automatically go into irb each time we enter the debugger" MIN_ABBREV = 'ir'.size end def run(args) super if @proc.settings[:autoirb] @proc.cmdloop_prehooks.insert_if_new(-1, *@proc.autoirb_hook) else @proc.cmdloop_prehooks.delete_by_name('autoirb') end end end if __FILE__ == $0 # Demo it. require_relative '../../../mock' require_relative '../auto' cmd = MockDebugger::subsub_setup(Trepan::SubSubcommand::SetAuto, Trepan::SubSubcommand::SetAutoIrb) %w(off on 0 1).each { |arg| cmd.run([cmd.name, arg]) } puts '-' * 10 puts cmd.save_command.join("\n") end
Version data entries
5 entries across 5 versions & 1 rubygems