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

module constants should be looked up at top-level by default

This commit is contained in:
John Mair 2012-04-17 22:50:39 +12:00
parent dc0e15cf47
commit 77387b3e5c

View file

@ -25,8 +25,8 @@ class Pry
# @return [Module, nil] The module or `nil` (if conversion failed).
# @example
# Pry::WrappedModule.from_str("Pry::Code")
def self.from_str(mod_name)
Pry::WrappedModule.new(eval(mod_name))
def self.from_str(mod_name, binding=TOPLEVEL_BINDING)
Pry::WrappedModule.new(binding.eval(mod_name))
rescue RescuableException
nil
end