Sha256: 0cd050f7b686e5c152ea8f9117020277157b30a508d12868e86114cdb858ff2b
Contents?: true
Size: 766 Bytes
Versions: 1
Compression:
Stored size: 766 Bytes
Contents
require "hike" require "rack" require "tilt" module Brochure VERSION = "0.5.1" autoload :Application, "brochure/application" autoload :CaptureNotSupported, "brochure/errors" 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.5.1 | lib/brochure.rb |