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

Version Path
landable-1.13.1 lib/landable.rb
landable-1.12.3 lib/landable.rb
landable-1.12.2 lib/landable.rb
landable-1.12.1 lib/landable.rb
landable-1.11.1 lib/landable.rb
landable-1.11.0 lib/landable.rb
landable-1.10.0.rc2 lib/landable.rb
landable-1.10.0.rc1 lib/landable.rb
landable-1.9.2 lib/landable.rb
landable-1.9.1 lib/landable.rb
landable-1.9.0 lib/landable.rb
landable-1.9.0.rc2 lib/landable.rb
landable-1.9.0.rc1 lib/landable.rb
landable-1.8.0 lib/landable.rb
landable-1.7.1.rc1 lib/landable.rb
landable-1.7.0 lib/landable.rb