Sha256: 52b83ba26c62d9aaf755d55aeebe7d8d058e352cb5cd16f1f4ba3f7e3dce8682
Contents?: true
Size: 719 Bytes
Versions: 16
Compression:
Stored size: 719 Bytes
Contents
require 'landable/version' require "landable/engine" require 'landable/liquid' require "landable/error" require 'landable/mime_types' require "landable/inflections" require "landable/traffic" require "landable/migration" require "landable/core_ext/ipaddr" require "lookup_by" module Landable # This absurd configuration loading code is not intended to live long. autoload :Configuration, 'landable/configuration' autoload :Layout, 'landable/layout' autoload :Partial, 'landable/partial' autoload :Seeds, 'landable/seeds' def self.configuration @configuration ||= Configuration.new end def self.configure yield configuration if block_given? configuration end end
Version data entries
16 entries across 16 versions & 1 rubygems