mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
output: rename 'boxed_io' to 'output'
Surely, `boxed_io` sounds way cooler than plain and boring `output` but I don't think it helps for understanding the code. Although it *is* an IO object, we treat it as output. Hence, it should be output (no boxes involved).
This commit is contained in:
parent
7ca5facc1c
commit
e7721ff540
1 changed files with 6 additions and 6 deletions
|
@ -6,7 +6,7 @@ class Pry
|
|||
|
||||
def initialize(pry_instance)
|
||||
@pry_instance = pry_instance
|
||||
@boxed_io = pry_instance.config.output
|
||||
@output = pry_instance.config.output
|
||||
end
|
||||
|
||||
def puts(*objs)
|
||||
|
@ -24,7 +24,7 @@ class Pry
|
|||
|
||||
def print(*objs)
|
||||
objs.each do |obj|
|
||||
@boxed_io.print decolorize_maybe(obj.to_s)
|
||||
@output.print decolorize_maybe(obj.to_s)
|
||||
end
|
||||
nil
|
||||
end
|
||||
|
@ -32,19 +32,19 @@ class Pry
|
|||
alias write print
|
||||
|
||||
def tty?
|
||||
@boxed_io.respond_to?(:tty?) && @boxed_io.tty?
|
||||
@output.respond_to?(:tty?) && @output.tty?
|
||||
end
|
||||
|
||||
def method_missing(method_name, *args, &block)
|
||||
if @boxed_io.respond_to?(method_name)
|
||||
@boxed_io.__send__(method_name, *args, &block)
|
||||
if @output.respond_to?(method_name)
|
||||
@output.__send__(method_name, *args, &block)
|
||||
else
|
||||
super
|
||||
end
|
||||
end
|
||||
|
||||
def respond_to_missing?(method_name, include_private = false)
|
||||
@boxed_io.respond_to?(method_name, include_private)
|
||||
@output.respond_to?(method_name, include_private)
|
||||
end
|
||||
|
||||
def decolorize_maybe(str)
|
||||
|
|
Loading…
Add table
Reference in a new issue