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



115
116
117
118
119
# File 'lib/glimmer/web/component.rb', line 115

def method_missing(method_name, *args, &block)
  Glimmer::DSL::Engine.interpret(method_name, *args, &block)
rescue
  super(method_name, *args, &block)
end