mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
rakefile includes mongrel_experimental
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@857 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
parent
7a50b0953f
commit
17a4272590
2 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
|
||||
v1.1.0. Pure Ruby URIClassifier. More modular architecture. JRuby support. Move C URIClassifier into mongrel_experimental project.
|
||||
v1.1. Pure Ruby URIClassifier. More modular architecture. JRuby support. Move C URIClassifier into mongrel_experimental project.
|
||||
|
||||
v1.0.3. Fix user-switching bug; make people upgrade to the latest from the RC.
|
||||
|
||||
|
|
4
Rakefile
4
Rakefile
|
@ -132,6 +132,7 @@ task :package_all => [:package] do
|
|||
sub_project("mongrel_upload_progress", :package)
|
||||
sub_project("mongrel_console", :package)
|
||||
sub_project("mongrel_cluster", :package)
|
||||
sub_project("mongrel_experimental", :package)
|
||||
sub_project("mongrel_service", :package) if RUBY_PLATFORM =~ /mswin/
|
||||
sh("rake java package") unless RUBY_PLATFORM =~ /java/
|
||||
# sh("rake mswin package") unless RUBY_PLATFORM =~ /mswin/
|
||||
|
@ -151,6 +152,7 @@ task :install => [:install_requirements] do
|
|||
sub_project("mongrel_upload_progress", :install)
|
||||
sub_project("mongrel_console", :install)
|
||||
sub_project("mongrel_cluster", :install)
|
||||
sub_project("mongrel_experimental", :install)
|
||||
sub_project("mongrel_service", :install) if RUBY_PLATFORM =~ /mswin/
|
||||
end
|
||||
|
||||
|
@ -162,6 +164,7 @@ task :uninstall => [:clean] do
|
|||
sub_project("mongrel_console", :uninstall)
|
||||
sub_project("gem_plugin", :uninstall)
|
||||
sub_project("fastthread", :uninstall)
|
||||
sub_project("mongrel_experimental", :uninstall)
|
||||
sub_project("mongrel_service", :uninstall) if RUBY_PLATFORM =~ /mswin/
|
||||
end
|
||||
|
||||
|
@ -174,6 +177,7 @@ task :clean do
|
|||
sub_project("mongrel_upload_progress", :clean)
|
||||
sub_project("mongrel_console", :clean)
|
||||
sub_project("mongrel_cluster", :clean)
|
||||
sub_project("mongrel_experimental", :clean)
|
||||
sub_project("mongrel_service", :clean) if RUBY_PLATFORM =~ /mswin/
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue