Class: Hyperloop::Router

Inherits:
Object
  • Object
show all
Defined in:
lib/hyperloop/router.rb,
lib/hyperloop/router/base.rb,
lib/hyperloop/router/hash.rb,
lib/hyperloop/router/memory.rb,
lib/hyperloop/router/static.rb,
lib/hyperloop/router/browser.rb,
lib/hyperloop/router/component.rb,
lib/hyperloop/router/base/class_methods.rb,
lib/hyperloop/router/hash/class_methods.rb,
lib/hyperloop/router/memory/class_methods.rb,
lib/hyperloop/router/static/class_methods.rb,
lib/hyperloop/router/browser/class_methods.rb

Defined Under Namespace

Modules: Base, Browser, Hash, Memory, Static Classes: Component

Class Method Summary collapse

Class Method Details

.inherited(child) ⇒ Object



3
4
5
6
# File 'lib/hyperloop/router.rb', line 3

def self.inherited(child)
  child.include(React::Component)
  child.include(Base)
end