1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/lib/pry/commands/ls/interrogatable.rb
Conrad Irwin 15d4a77353 sp.
2014-02-05 15:35:24 -08:00

18 lines
360 B
Ruby

module Pry::Command::Ls::Interrogatable
private
def interrogating_a_module?
Module === @interrogatee
end
def interrogatee_mod
if interrogating_a_module?
@interrogatee
else
singleton = Pry::Method.singleton_class_of(@interrogatee)
singleton.ancestors.grep(::Class).reject { |c| c == singleton }.first
end
end
end