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/mixin.rb,
lib/hyperloop/router/memory.rb,
lib/hyperloop/router/static.rb,
lib/hyperloop/router/browser.rb,
lib/hyperloop/router/component.rb

Defined Under Namespace

Modules: Base, Browser, Hash, Memory, Mixin, 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(Hyperloop::Component::Mixin)
  child.include(Base)
end