`NullPager` is a “pager” that actually just prints all output as it comes in. Used when `Pry.config.pager` is false.
# File lib/pry/pager.rb, line 65 def initialize(out) @out = out end
# File lib/pry/pager.rb, line 82 def close end
# File lib/pry/pager.rb, line 73 def print(str) write str end
# File lib/pry/pager.rb, line 69 def puts(str) print "#{str.chomp}\n" end
# File lib/pry/pager.rb, line 78 def write(str) @out.write str end