Sha256: 6ce10ca35b82afb73f2d07e3fae5fccb7a4bd115017777efc541ee7c762fe11b
Contents?: true
Size: 1.23 KB
Versions: 10
Compression:
Stored size: 1.23 KB
Contents
require 'sinatra/base' module Sinatra class Default < Base # we assume that the first file that requires 'sinatra' is the # app_file. all other path related options are calculated based # on this path by default. set :app_file, lambda { ignore = [ /lib\/sinatra.*\.rb$/, # all sinatra code /\(.*\)/, # generated code /custom_require\.rb$/ # rubygems require hacks ] path = caller.map{ |line| line.split(/:\d/, 2).first }.find do |file| next if ignore.any? { |pattern| file =~ pattern } file end path || $0 }.call set :run, Proc.new { $0 == app_file } if run? && ARGV.any? require 'optparse' OptionParser.new { |op| op.on('-x') { set :mutex, true } op.on('-e env') { |val| set :environment, val.to_sym } op.on('-s server') { |val| set :server, val } op.on('-p port') { |val| set :port, val.to_i } }.parse!(ARGV.dup) end end end include Sinatra::Delegator def mime(ext, type) ext = ".#{ext}" unless ext.to_s[0] == ?. Rack::Mime::MIME_TYPES[ext.to_s] = type end at_exit do raise $! if $! Sinatra::Application.run! if Sinatra::Application.run? end
Version data entries
10 entries across 10 versions & 4 rubygems