Module: Bootstrap::Delegate
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
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
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
|