mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
fix respond_to_missing? that makes no sense.
Pry::Output wraps `$stdout` or some IO, not `Pry::Config`, it makes no sense to say Pry::Output responds to all config methods.
This commit is contained in:
parent
10c8d19d1f
commit
9a350dbf6c
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ class Pry::Output
|
|||
end
|
||||
|
||||
def respond_to_missing?(*a)
|
||||
_pry_.config.respond_to?(*a)
|
||||
@boxed_io.respond_to?(*a)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Add table
Reference in a new issue