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



51
52
53
# File 'lib/lotus/layout.rb', line 51

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



82
83
84
# File 'lib/lotus/layout.rb', line 82

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



71
72
73
# File 'lib/lotus/layout.rb', line 71

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