module Rpr::Formatter::Pry
Public Class Methods
print(object)
click to toggle source
# File lib/rpr/formatter/pry.rb, line 6 def self.print(object) raise "Can't specify --out option with pry formatter" unless $stdout.tty? binding.pry(object) end