mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
include jruby builds in the package_all task
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@734 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
parent
a71febd811
commit
f2ee1eb89d
1 changed files with 8 additions and 15 deletions
23
Rakefile
23
Rakefile
|
@ -132,9 +132,8 @@ task :package_all => [:package] do
|
|||
sub_project("mongrel_upload_progress", :package)
|
||||
sub_project("mongrel_console", :package)
|
||||
sub_project("mongrel_cluster", :package)
|
||||
if RUBY_PLATFORM =~ /mswin/
|
||||
sub_project("mongrel_service", :package)
|
||||
end
|
||||
sub_project("mongrel_service", :package) if RUBY_PLATFORM =~ /mswin/
|
||||
sh("rake java package") unless RUBY_PLATFORM =~ /java/
|
||||
end
|
||||
|
||||
task :install_requirements do
|
||||
|
@ -150,10 +149,8 @@ task :install => [:install_requirements] do
|
|||
sub_project("mongrel_status", :install)
|
||||
sub_project("mongrel_upload_progress", :install)
|
||||
sub_project("mongrel_console", :install)
|
||||
sub_project("mongrel_cluster", :install)
|
||||
if RUBY_PLATFORM =~ /mswin/
|
||||
sub_project("mongrel_service", :install)
|
||||
end
|
||||
sub_project("mongrel_cluster", :install)
|
||||
sub_project("mongrel_service", :install) if RUBY_PLATFORM =~ /mswin/
|
||||
end
|
||||
|
||||
desc "for Mongrel and all its subprojects"
|
||||
|
@ -163,10 +160,8 @@ task :uninstall => [:clean] do
|
|||
sub_project("mongrel_upload_progress", :uninstall)
|
||||
sub_project("mongrel_console", :uninstall)
|
||||
sub_project("gem_plugin", :uninstall)
|
||||
sub_project("fastthread", :uninstall)
|
||||
if RUBY_PLATFORM =~ /mswin/
|
||||
sub_project("mongrel_service", :install)
|
||||
end
|
||||
sub_project("fastthread", :uninstall)
|
||||
sub_project("mongrel_service", :install) if RUBY_PLATFORM =~ /mswin/
|
||||
end
|
||||
|
||||
desc "for Mongrel and all its subprojects"
|
||||
|
@ -177,10 +172,8 @@ task :clean do
|
|||
sub_project("mongrel_status", :clean)
|
||||
sub_project("mongrel_upload_progress", :clean)
|
||||
sub_project("mongrel_console", :clean)
|
||||
sub_project("mongrel_cluster", :clean)
|
||||
if RUBY_PLATFORM =~ /mswin/
|
||||
sub_project("mongrel_service", :clean)
|
||||
end
|
||||
sub_project("mongrel_cluster", :clean)
|
||||
sub_project("mongrel_service", :clean) if RUBY_PLATFORM =~ /mswin/
|
||||
end
|
||||
|
||||
#### Site upload tasks
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue