Module: Bootstrap::Delegate

Included in:
Bootstrap, Component, OldComponent
Defined in:
mod/bootstrap/lib/bootstrap/delegate.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *args, &block) ⇒ Object



3
4
5
6
7
8
9
10
# File 'mod/bootstrap/lib/bootstrap/delegate.rb', line 3

def method_missing method_name, *args, &block
  # return super unless @context.respond_to? method_name
  if block_given?
    @context.send(method_name, *args, &block)
  else
    @context.send(method_name, *args)
  end
end

Instance Method Details

#respond_to_missing?(method_name, _include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
# File 'mod/bootstrap/lib/bootstrap/delegate.rb', line 12

def respond_to_missing? method_name, _include_private=false
  @context.respond_to? method_name
end