Skip to content

Instantly share code, notes, and snippets.

@gnepud
Forked from ches/.pryrc
Created June 12, 2012 23:29
Show Gist options
  • Save gnepud/2920800 to your computer and use it in GitHub Desktop.
Save gnepud/2920800 to your computer and use it in GitHub Desktop.
Enable Hirb in Pry, and hack disable/enable to work in-session
if defined? Rails
begin
require 'hirb'
rescue LoadError
# Missing goodies, bummer
end
if defined? Hirb
# Dirty hack to support in-session Hirb.disable/enable
Hirb::View.instance_eval do
def enable_output_method
@output_method = true
Pry.config.print = proc do |output, value|
Hirb::View.view_or_page_output(value) || Pry::DEFAULT_PRINT.call(output, value)
end
end
def disable_output_method
Pry.config.print = proc { |output, value| Pry::DEFAULT_PRINT.call(output, value) }
@output_method = nil
end
end
Hirb.enable
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment