Sha256: 56ad3a12d12a2810e6b6dc52f3a10c1095ae22cc7df1a99053c97d7b90f93ad4

Contents?: true

Size: 697 Bytes

Versions: 1

Compression:

Stored size: 697 Bytes

Contents

require "hike"
require "rack"
require "tilt"

module Brochure
  VERSION = "0.4.0"

  autoload :Application,      "brochure/application"
  autoload :Context,          "brochure/context"
  autoload :Failsafe,         "brochure/failsafe"
  autoload :Static,           "brochure/static"
  autoload :Template,         "brochure/template"
  autoload :TemplateNotFound, "brochure/errors"

  def self.app(root, options = {})
    app = Application.new(root, options)
    app = Static.new(app, app.asset_root)

    if development?
      app = Rack::ShowExceptions.new(app)
    else
      app = Failsafe.new(app)
    end

    app
  end

  def self.development?
    ENV["RACK_ENV"] == "development"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
brochure-0.4.0 lib/brochure.rb