Skip to content

Commit

Permalink
correct fix for #1547
Browse files Browse the repository at this point in the history
  • Loading branch information
namusyaka committed Aug 19, 2019
1 parent b008189 commit 6504f2c
Showing 1 changed file with 23 additions and 13 deletions.
36 changes: 23 additions & 13 deletions lib/sinatra/main.rb
@@ -1,6 +1,25 @@
require 'sinatra/base'

module Sinatra
ParamsConfig = {}

if ARGV.any?
require 'optparse'
OptionParser.new { |op|
op.on('-p port', 'set the port (default is 4567)') { |val| ParamsConfig[:port] = Integer(val) }
op.on('-s server', 'specify rack server/handler (default is thin)') { |val| ParamsConfig[:server] = val }
op.on('-q', 'turn on quiet mode (default is off)') { ParamsConfig[:quiet] = true }
op.on('-x', 'turn on the mutex lock (default is off)') { ParamsConfig[:lock] = true }
op.on('-e env', 'set the environment (default is development)') do |val|
ENV['RACK_ENV'] = val
ParamsConfig[:environment] = val.to_sym
end
op.on('-o addr', "set the host (default is (env == 'development' ? 'localhost' : '0.0.0.0'))") do |val|
ParamsConfig[:bind] = val
end
}.parse!(ARGV.dup)
end

require 'sinatra/base'

class Application < Base

# we assume that the first file that requires 'sinatra' is the
Expand All @@ -10,19 +29,10 @@ class Application < Base

set :run, Proc.new { File.expand_path($0) == File.expand_path(app_file) }

if run? && ARGV.any?
require 'optparse'
OptionParser.new { |op|
op.on('-p port', 'set the port (default is 4567)') { |val| set :port, Integer(val) }
op.on('-o addr', "set the host (default is #{bind})") { |val| set :bind, val }
op.on('-e env', 'set the environment (default is development)') { |val| set :environment, val.to_sym }
op.on('-s server', 'specify rack server/handler (default is thin)') { |val| set :server, val }
op.on('-q', 'turn on quiet mode (default is off)') { set :quiet, true }
op.on('-x', 'turn on the mutex lock (default is off)') { set :lock, true }
}.parse!(ARGV.dup)
end
ParamsConfig.each { |k, v| set k, v } if run? && ARGV.any?
end

remove_const(:ParamsConfig)
at_exit { Application.run! if $!.nil? && Application.run? }
end

Expand Down

0 comments on commit 6504f2c

Please sign in to comment.