mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
require 'pry/commands/ls/interrogatable'
|
|
|
|
class Pry
|
|
class Command::Ls < Pry::ClassCommand
|
|
class InstanceVars < Pry::Command::Ls::Formatter
|
|
include Pry::Command::Ls::Interrogatable
|
|
|
|
def initialize(interrogatee, no_user_opts, opts, _pry_)
|
|
super(_pry_)
|
|
@interrogatee = interrogatee
|
|
@no_user_opts = no_user_opts
|
|
@default_switch = opts[:ivars]
|
|
end
|
|
|
|
def correct_opts?
|
|
super || @no_user_opts
|
|
end
|
|
|
|
def output_self
|
|
ivars = if Object === @interrogatee
|
|
Pry::Method.safe_send(@interrogatee, :instance_variables)
|
|
else
|
|
[] #TODO: BasicObject support
|
|
end
|
|
kvars = Pry::Method.safe_send(interrogatee_mod, :class_variables)
|
|
ivars_out = output_section('instance variables', format(:instance_var, ivars))
|
|
kvars_out = output_section('class variables', format(:class_var, kvars))
|
|
ivars_out + kvars_out
|
|
end
|
|
|
|
private
|
|
|
|
def format(type, vars)
|
|
vars.sort_by { |var| var.to_s.downcase }.map { |var| color(type, var) }
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|