Skip to content

Instantly share code, notes, and snippets.

@shyazusa
Last active September 5, 2018 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shyazusa/c271a6f3606599daf638e9ea029fc42d to your computer and use it in GitHub Desktop.
Save shyazusa/c271a6f3606599daf638e9ea029fc42d to your computer and use it in GitHub Desktop.
# .pryrc
begin
require 'hirb'
require 'awesome_print'
rescue LoadError
# Missing goodies, bummer
end
AwesomePrint.pry!
if defined? Hirb
# Slightly dirty hack to fully support in-session Hirb.disable/enable toggling
Hirb::View.instance_eval do
def enable_output_method
@output_method = true
@old_print = Pry.config.print
Pry.config.print = proc do |*args|
Hirb::View.view_or_page_output(args[1]) || @old_print.call(*args)
end
end
def disable_output_method
Pry.config.print = @old_print
@output_method = nil
end
end
Hirb.enable
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment