Class: Voom::Presenters::WebClient::ComponentHtmlDecorator

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/voom/presenters/web_client/component_html_decorator.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

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



12
13
14
15
16
17
18
# File 'lib/voom/presenters/web_client/component_html_decorator.rb', line 12

def method_missing(meth, *args, &block)
  if respond_to?(meth)
    super
  else
    nil
  end
end

Instance Method Details

#_plugins_Object



8
9
10
# File 'lib/voom/presenters/web_client/component_html_decorator.rb', line 8

def _plugins_
  __getobj__.send(:_plugins_)
end