mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
6 lines
257 B
Ruby
6 lines
257 B
Ruby
require File.expand_path(File.join(File.dirname(__FILE__), 'helper'))
|
|
|
|
my_print = proc { |out, value| out.puts "Output is: #{value.inspect}" }
|
|
|
|
# Start a Pry session using the print object defined in my_print
|
|
Pry.start(TOPLEVEL_BINDING, :print => my_print)
|