Class: Pry::Command::Ls::SelfMethods
- Includes:
- Interrogatable, MethodsHelper
- Defined in:
- lib/pry/commands/ls/self_methods.rb
Instance Attribute Summary
Attributes inherited from Formatter
Instance Method Summary collapse
-
#initialize(interrogatee, no_user_opts, opts, pry_instance) ⇒ SelfMethods
constructor
A new instance of SelfMethods.
- #output_self ⇒ Object
Methods inherited from Formatter
Constructor Details
#initialize(interrogatee, no_user_opts, opts, pry_instance) ⇒ SelfMethods
Returns a new instance of SelfMethods.
10 11 12 13 14 15 16 |
# File 'lib/pry/commands/ls/self_methods.rb', line 10 def initialize(interrogatee, no_user_opts, opts, pry_instance) super(pry_instance) @interrogatee = interrogatee @no_user_opts = no_user_opts @ppp_switch = opts[:ppp] @jruby_switch = opts['all-java'] end |
Instance Method Details
#output_self ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/pry/commands/ls/self_methods.rb', line 18 def output_self methods = all_methods(true).select do |m| m.owner == @interrogatee && grep.regexp[m.name] end heading = "#{Pry::WrappedModule.new(@interrogatee).method_prefix}methods" output_section(heading, format(methods)) end |