Module: Hanami::Extensions::View::Context Private

Defined in:
lib/hanami/extensions/view/context.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

View context for views in Hanami apps.

This is NOT RELEASED as of 2.0.0.

Since:

  • 0.1.0

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Class Method Summary collapse

Class Method Details

.included(context_class) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.1.0



16
17
18
19
20
21
22
# File 'lib/hanami/extensions/view/context.rb', line 16

def self.included(context_class)
  super

  context_class.extend(Hanami::SliceConfigurable)
  context_class.extend(ClassMethods)
  context_class.prepend(InstanceMethods)
end