Module: Glimmer::Web::Component::GlimmerSupersedable
- Defined in:
- lib/glimmer/web/component.rb
Overview
This module was only created to prevent Glimmer from checking method_missing first
Instance Method Summary collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *args, &block) ⇒ Object
155 156 157 158 159 |
# File 'lib/glimmer/web/component.rb', line 155 def method_missing(method_name, *args, &block) Glimmer::DSL::Engine.interpret(method_name, *args, &block) rescue super(method_name, *args, &block) end |