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/interrogateable.rb
2013-12-01 01:34:14 +02:00

17 lines
312 B
Ruby

module Pry::Command::Ls::Interrogateable
def interrogating_a_module?
Module === @interrogatee
end
def interrogatee_mod
if interrogating_a_module?
@interrogatee
else
class << @interrogatee
ancestors.grep(::Class).reject { |c| c == self }.first
end
end
end
end