# File lib/pry/output.rb, line 5 def initialize(_pry_) @_pry_ = _pry_ end
If pry.config.color is currently false, removes ansi escapes from the string.
# File lib/pry/output.rb, line 34 def decolorize_maybe(str) if _pry_.config.color str else Helpers::Text.strip_color str end end
# File lib/pry/output.rb, line 42 def method_missing(name, *args, &block) _pry_.config.output.send(name, *args, &block) end
# File lib/pry/output.rb, line 23 def print(*objs) objs.each do |obj| _pry_.config.output.print decolorize_maybe(obj.to_s) end nil end
# File lib/pry/output.rb, line 9 def puts(*objs) return print "\n" if objs.empty? objs.each do |obj| if ary = Array.try_convert(obj) puts(*ary) else print "#{obj.to_s.chomp}\n" end end nil end
# File lib/pry/output.rb, line 46 def respond_to_missing?(*a) _pry_.config.respond_to?(*a) end