class Ame::Help::Delegate

Delegates help output requests to another help output. @api internal

Public Class Methods

new(help) click to toggle source
# File lib/ame-1.0/help/delegate.rb, line 5
def initialize(help)
  @help = help
end

Public Instance Methods

dispatch(method, klass) click to toggle source
# File lib/ame-1.0/help/delegate.rb, line 9
def dispatch(method, klass)
  @help.dispatch method, klass
  self
end
method(method) click to toggle source
# File lib/ame-1.0/help/delegate.rb, line 14
def method(method)
  @help.method method
  self
end