class Discorb::View::ComponentHandler

Handler for the components.

Public Instance Methods

method_missing(method, ...) click to toggle source

Redirects method calls to the object.

# File lib/discorb/view/view.rb, line 11
def method_missing(method, ...)
  object.send(method, ...)
end
respond_to_missing?(method, include_private = false) click to toggle source
# File lib/discorb/view/view.rb, line 15
def respond_to_missing?(method, include_private = false)
  object.respond_to?(method, include_private)
end