Module: IRB::HelpersContainer

Defined in:
lib/irb/workspace.rb

Class Method Summary collapse

Class Method Details

.install_helper_methodsObject


160
161
162
163
164
165
166
# File 'lib/irb/workspace.rb', line 160

def install_helper_methods
  HelperMethod.helper_methods.each do |name, helper_method_class|
    define_method name do |*args, **opts, &block|
      helper_method_class.instance.execute(*args, **opts, &block)
    end unless method_defined?(name)
  end
end