Class: Pry::Command::Ls::LocalNames

Inherits:
Formatter show all
Defined in:
lib/pry/commands/ls/local_names.rb

Instance Attribute Summary

Attributes inherited from Formatter

#_pry_

Instance Method Summary collapse

Methods inherited from Formatter

#write_out

Constructor Details

#initialize(no_user_opts, args, _pry_) ⇒ LocalNames

Returns a new instance of LocalNames.



4
5
6
7
8
9
# File 'lib/pry/commands/ls/local_names.rb', line 4

def initialize(no_user_opts, args, _pry_)
  super(_pry_)
  @no_user_opts = no_user_opts
  @args = args
  @sticky_locals = _pry_.sticky_locals
end

Instance Method Details

#correct_opts?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/pry/commands/ls/local_names.rb', line 11

def correct_opts?
  super || (@no_user_opts && @args.empty?)
end

#output_selfObject



15
16
17
18
# File 'lib/pry/commands/ls/local_names.rb', line 15

def output_self
  local_vars = grep.regexp[@target.eval('local_variables')]
  output_section('locals', format(local_vars))
end