module Integral

Integral

:nocov:

Constants

VERSION

Integral Version

Public Class Methods

blog_enabled?() click to toggle source

@return [Boolean] Shortcut to find out if blog is enabled

# File lib/integral.rb, line 116
def self.blog_enabled?
  Integral.blog_enabled == true
end
compression_enabled?() click to toggle source

@return [Boolean] Compression status

# File lib/integral.rb, line 121
def self.compression_enabled?
  Integral.compression_enabled == true
end
configure() { |self| ... } click to toggle source

Enables engine configuration

# File lib/integral.rb, line 33
def self.configure
  yield(self)
end
dynamic_homepage_enabled?() click to toggle source

@return [Boolean] Enables Dynamic Routing of the homepage using Integral::Middleware::Router

# File lib/integral.rb, line 126
def self.dynamic_homepage_enabled?
  Integral.root_path.nil?
end