Sha256: d7f103c6c38babbc1b568177ca310a77ea2c617cf8b7ae89367e14826d60e2b0
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
module Jubilee class Configuration def initialize(options, &block) @options = options @block = block end def load @app = load_rack_adapter(@options, &@block) end def app if !@options[:quiet] and @options[:environment] == "development" logger = @options[:logger] || STDOUT Rack::CommonLogger.new(@app, logger) else @app end end def port @options[:port] end def ssl @options[:ssl] end #def self.load(config) # rackup_code = ::File.read(config) # eval("Rack::Builder.new {( #{rackup_code}\n )}.to_app", TOPLEVEL_BINDING, config) #end private def load_rack_adapter(options, &block) if block app = Rack::Builder.new(&block).to_app else if options[:rackup] Kernel.load(options[:rackup]) app = Object.const_get(File.basename(options[:rackup], '.rb').capitalize.to_sym).new else Dir.chdir options[:chdir] if options[:chdir] app, opts = Rack::Builder.parse_file "config.ru" end end app #Rack::Lint.new(Rack::CommonLogger.new(app, STDOUT)) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jubilee-0.1.2 | lib/jubilee/configuration.rb |