Sha256: 110590627ffca56ab6beecd0ff189e32af2cdfdf25c68118871fbc8732826880
Contents?: true
Size: 1.93 KB
Versions: 4
Compression:
Stored size: 1.93 KB
Contents
require 'locomotive/common' require_relative 'steam/configuration' require_relative_all 'steam/decorators' require_relative 'steam/liquid' require_relative 'steam/errors' require_relative 'steam/models' require_relative_all 'steam/entities' require_relative 'steam/repositories' require_relative 'steam/services' module Locomotive module Steam FRONTMATTER_REGEXP = /^(?<yaml>(---\s*\n.*?\n?)^(---\s*$\n?))?(?<template>.*)/mo.freeze JSON_FRONTMATTER_REGEXP = /^---\s*\n(?<json>(.*?\n?))?^(---\s*$\n?)(?<template>.*)/mo.freeze WILDCARD = 'content_type_template'.freeze CONTENT_ENTRY_ENGINE_CLASS_NAME = /^Locomotive::ContentEntry(.*)$/o.freeze SECTIONS_SETTINGS_VARIABLE_REGEXP = /^\s*([a-z]+\.)?settings\.(?<id>.*)\s*$/o.freeze SECTIONS_BLOCK_FORLOOP_REGEXP = /(?<name>.+)-section\.blocks$/o.freeze SECTIONS_LINK_TARGET_REGEXP = /[^\"]+\/_locomotive-link\/(?<link>[^\"]+)/mo.freeze IsHTTP = /\Ahttps?:\/\//o.freeze IsLAYOUT = /\Alayouts(\/|\z)/o.freeze class << self attr_writer :configuration attr_accessor :extension_configurations end def self.configuration @configuration ||= Configuration.new end def self.reset @configuration = Configuration.new end def self.configure yield(configuration) require_relative 'steam/initializers' end def self.configure_extension(&block) (@extension_configurations ||= []) << block end # Shortcut to build the Rack stack def self.to_app (@extension_configurations || []).each do |block| block.call(@configuration) end require_relative 'steam/server' Server.to_app end # FIXME: not sure it will ever be needed # class << self # def method_missing(name, *args, &block) # Locomotive::Steam.configuration.public_send(name) # rescue # super # end # end end end
Version data entries
4 entries across 4 versions & 1 rubygems