Flowdock
method

execute

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: IRB::ExtendCommand::Help
execute(context, *names) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/irb/cmd/help.rb, line 21
        def self.execute(context, *names)
          names.each do |name|
            begin
              @ri.get_info_for(name.to_s)
            rescue RiError
              puts $!.message
            end
          end
          nil
        end
Register or log in to add new notes.