mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Fixes --group and --user options.
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@362 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
parent
9b5d2d7035
commit
03118c1311
3 changed files with 5 additions and 5 deletions
2
Rakefile
2
Rakefile
|
@ -53,7 +53,7 @@ task :site => [:site_webgen, :site_rdoc, :site_coverage, :site_projects_rdoc]
|
|||
setup_extension("http11", "http11")
|
||||
|
||||
name="mongrel"
|
||||
version="0.3.13.5"
|
||||
version="0.3.14"
|
||||
|
||||
setup_gem(name, version) do |spec|
|
||||
spec.summary = "A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps."
|
||||
|
|
|
@ -32,9 +32,9 @@ module Mongrel
|
|||
['-C', '--config PATH', "Use a config file", :@config_file, nil],
|
||||
['-S', '--script PATH', "Load the given file as an extra config script", :@config_script, nil],
|
||||
['-G', '--generate PATH', "Generate a config file for use with -C", :@generate, nil],
|
||||
[nil, '--user USER', "User to run as", :@user, nil],
|
||||
[nil, '--group GROUP', "Group to run as", :@group, nil],
|
||||
[nil, '--prefix PATH', "URL prefix for Rails app", :@prefix, nil]
|
||||
['', '--user USER', "User to run as", :@user, nil],
|
||||
['', '--group GROUP', "Group to run as", :@group, nil],
|
||||
['', '--prefix PATH', "URL prefix for Rails app", :@prefix, nil]
|
||||
]
|
||||
end
|
||||
|
||||
|
|
|
@ -556,7 +556,7 @@ void Init_http11()
|
|||
DEF_GLOBAL(server_protocol, "SERVER_PROTOCOL");
|
||||
DEF_GLOBAL(server_protocol_value, "HTTP/1.1");
|
||||
DEF_GLOBAL(http_host, "HTTP_HOST");
|
||||
DEF_GLOBAL(mongrel_version, "Mongrel 0.3.13.5");
|
||||
DEF_GLOBAL(mongrel_version, "Mongrel 0.3.14");
|
||||
DEF_GLOBAL(server_software, "SERVER_SOFTWARE");
|
||||
DEF_GLOBAL(port_80, "80");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue