Skip to content

Instantly share code, notes, and snippets.

@kml
Created December 13, 2016 22:35
Show Gist options
  • Save kml/33de8a7dc8d2fcfa3483c1614936aba5 to your computer and use it in GitHub Desktop.
Save kml/33de8a7dc8d2fcfa3483c1614936aba5 to your computer and use it in GitHub Desktop.
Pry-based pretty-printer for Ruby objects.
require "pry"
def pp(value)
pager = Pry::Pager::NullPager.new(STDOUT)
Pry::ColorPrinter.pp(value, pager, Pry::Terminal.width! - 1)
end
alias ap pp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment