module Eclair::LessViewer

Public Instance Methods

show(obj) click to toggle source
# File lib/eclair/less_viewer.rb, line 18
def show obj
  IO.popen("less -R -C", "w") do |f|
    ColorPP.pp(obj, f)
  end
end