Method: Hyperloop::Router::Hash.included

Defined in:
lib/hyperloop/router/hash.rb

.included(base) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/hyperloop/router/hash.rb', line 4

def self.included(base)
  base.extend(HyperRouter::ClassMethods)
  base.history(:hash)

  base.include(HyperRouter::InstanceMethods)
  base.include(HyperRouter::ComponentMethods)
end