模块 IRB::HelpersContainer
公共类方法
install_helper_methods() 点击切换源代码
# File 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