Skip to content

Instantly share code, notes, and snippets.

@genewoo
Last active December 13, 2015 16:59
Show Gist options
  • Save genewoo/4944564 to your computer and use it in GitHub Desktop.
Save genewoo/4944564 to your computer and use it in GitHub Desktop.
enable disable irb echo
# via http://tagaholic.me/2009/05/29/exploring-how-to-configure-irb.html#echo
def irb_verbosity_toggle
irb_context.echo ? irb_context.echo = false : irb_context.echo = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment