public
Fork of bmizerany/sinatra
Description: Classy web-development dressed in a DSL (official / canonical repo)
Homepage: http://sinatra.github.com
Clone URL: git://github.com/sinatra/sinatra.git
sinatra / lib / sinatra / main.rb
100644 31 lines (24 sloc) 0.766 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'sinatra/base'
 
module Sinatra
  class Application < 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, caller_files.first || $0
 
    set :run, Proc.new { $0 == app_file }
 
    if run? && ARGV.any?
      require 'optparse'
      OptionParser.new { |op|
        op.on('-x') { set :lock, 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
 
    at_exit do
      raise $! if $!
      run! if run?
    end
  end
end
 
include Sinatra::Delegator