Module: Lotus::Layout::ClassMethods

Defined in:
lib/lotus/layout.rb

Overview

Class level API

Since:

  • 0.1.0

Constant Summary collapse

SUFFIX =

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

Template name suffix

See Also:

Since:

  • 0.1.0

'_layout'.freeze

Instance Method Summary collapse

Instance Method Details

#registryObject

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.

A registry that holds all the registered layouts.

See Also:

Since:

  • 0.1.0



60
61
62
# File 'lib/lotus/layout.rb', line 60

def registry
  @registry ||= View::Rendering::LayoutRegistry.new(self)
end

#suffixObject

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.

Template name suffix

See Also:

Since:

  • 0.1.0



91
92
93
# File 'lib/lotus/layout.rb', line 91

def suffix
  SUFFIX
end

#templateObject

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.

Template name

ApplicationLayout.template # => ‘application’

Examples:

# Given a template 'templates/application.html.erb'

class ApplicationLayout
  include Lotus::Layout
end

See Also:

Since:

  • 0.1.0



80
81
82
# File 'lib/lotus/layout.rb', line 80

def template
  super.sub(suffix, '')
end