Module: Card::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
4
5
6
7
8
9
10
11
|
# File 'mod/bootstrap/lib/card/bootstrap/delegate.rb', line 4
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
13
14
15
|
# File 'mod/bootstrap/lib/card/bootstrap/delegate.rb', line 13
def respond_to_missing? method_name, _include_private=false
@context.respond_to? method_name
end
|