mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
better clean pattern
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@862 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
parent
b7ee7b3fc9
commit
b3f71e23e0
2 changed files with 6 additions and 2 deletions
4
Rakefile
4
Rakefile
|
@ -6,7 +6,7 @@ require 'echoe'
|
|||
e = Echoe.new("mongrel") do |p|
|
||||
p.summary = "A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps."
|
||||
p.author ="Zed A. Shaw"
|
||||
p.clean_pattern = ['ext/http11/*.{bundle,so,o,obj,pdb,lib,def,exp}', 'ext/http11/Makefile', 'pkg', 'lib/*.bundle', '*.gem', 'site/output', '.config', 'lib/http11.jar', 'ext/http11_java/classes', 'coverage']
|
||||
p.clean_pattern = ['ext/http11/*.{bundle,so,o,obj,pdb,lib,def,exp}', 'lib/*.{bundle,so,o,obj,pdb,lib,def,exp}', 'ext/http11/Makefile', 'pkg', 'lib/*.bundle', '*.gem', 'site/output', '.config', 'lib/http11.jar', 'ext/http11_java/classes', 'coverage']
|
||||
p.rdoc_pattern = ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc']
|
||||
p.ignore_pattern = /^(pkg|site|projects|doc|log)|CVS|\.log/
|
||||
p.ruby_version = '>= 1.8.4'
|
||||
|
@ -72,7 +72,7 @@ end
|
|||
#### XXX Hack around RubyGems and Echoe for pre-compiled extensions.
|
||||
|
||||
def move_extensions
|
||||
Dir["ext/**/*.#{Config::CONFIG['DLEXT']}"].each { |file| cp file, "lib/" }
|
||||
Dir["ext/**/*.#{Config::CONFIG['DLEXT']}"].each { |file| mv file, "lib/" }
|
||||
end
|
||||
|
||||
def java_classpath_arg
|
||||
|
|
|
@ -7,6 +7,10 @@ ordering: 2
|
|||
|
||||
h1. Latest News
|
||||
|
||||
h2. Nov 1: Mongrel 1.1, Java edition
|
||||
|
||||
Mongrel 1.1. It adds JRuby support. Mongrel_cluster is also updated to 1.0.4, with fixes for a Capistrano recipe bug.
|
||||
|
||||
h2. Oct 29: Mongrel 1.0.4, spooky.
|
||||
|
||||
Mongrel 1.0.4 is out. It fixes three bugs that were introduced in 1.0.3.
|
||||
|
|
Loading…
Add table
Reference in a new issue