1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Add Pry::Method::Disowned, [Fixes #357]

This might be an over-the-top solution...
This commit is contained in:
Conrad Irwin 2011-12-03 20:21:02 -08:00
parent 13819b84db
commit d6b929f95c
2 changed files with 59 additions and 2 deletions

View file

@ -49,7 +49,11 @@ class Pry
if [:__script__, nil, :__binding__, :__binding_impl__].include?(meth_name) if [:__script__, nil, :__binding__, :__binding_impl__].include?(meth_name)
nil nil
else else
new(b.eval("method(#{meth_name.to_s.inspect})")) begin
new(b.eval("method(#{meth_name.to_s.inspect})"))
rescue NameError, NoMethodError
Disowned.new(b.eval('self'), meth_name.to_s)
end
end end
end end
@ -178,7 +182,7 @@ class Pry
# Get the owner of the method as a Pry::Module # Get the owner of the method as a Pry::Module
# @return [Pry::Module] # @return [Pry::Module]
def wrapped_owner def wrapped_owner
@wrapped_owner ||= Pry::WrappedModule.new(@method.owner) @wrapped_owner ||= Pry::WrappedModule.new(owner)
end end
# Get the name of the method including the class on which it was defined. # Get the name of the method including the class on which it was defined.
@ -412,5 +416,43 @@ class Pry
nil nil
end end
# A Disowned Method is one that's been removed from the class on which it was defined.
#
# e.g.
# class C
# def foo
# C.send(:undefine_method, :foo)
# Pry::Method.from_binding(binding)
# end
# end
#
# In this case we assume that the "owner" is the singleton class of the receiver.
#
# This occurs mainly in Sinatra applications.
class Disowned < Method
attr_reader :receiver, :name
# Create a new Disowned method.
#
# @param [Object] receiver
# @param [String] method_name
def initialize(*args)
@receiver, @name = *args
end
# Get the hypothesized owner of the method.
#
# @return [Object]
def owner
class << receiver; self; end
end
# Raise a more useful error message instead of trying to forward to nil.
def method_missing(meth_name, *args, &block)
raise "Cannot call '#{meth_name}' on an undef'd method." if method(:name).respond_to?(meth_name)
Object.instance_method(:method_missing).bind(self).call(meth_name, *args, &block)
end
end
end end
end end

View file

@ -31,6 +31,21 @@ describe "Pry::DefaultCommands::Context" do
end end
end end
describe "whereami" do
it 'should work with methods that have been undefined' do
class Cor
def blimey!
Cor.send :undef_method, :blimey!
# using [.] so the regex doesn't match itself
mock_pry(binding, 'whereami').should =~ /self[.]blimey!/
end
end
Cor.new.blimey!
Object.remove_const(:Cor)
end
end
describe "exit" do describe "exit" do
it 'should pop a binding with exit' do it 'should pop a binding with exit' do
b = Pry.binding_for(:outer) b = Pry.binding_for(:outer)