Release Name: 0.1.0
Notes:
Clogger is Rack middleware for logging HTTP requests. The log format
is customizable so you can specify exactly which fields to log.
* http://clogger.rubyforge.org/
* clogger@librelist.com
* git://git.bogomips.org/clogger.git
Changes:
This release should help ensure compatibility with a
to-be-released version of Rack::Lint that allows subclasses of
the core String and Hash objects for users of the optional C
extension.
Eric Wong (6):
ext: convert non-Hashes #to_hash if possible
ext: ensure all objects we byte_xs are Strings
tests for subclassing
gemspec: disable the license= field for older RubyGems
GNUmakefile: fix grammar FAIL in comment
cleanup packaging and website/rdoc
Changes:
.document | 3 +-
.gitignore | 4 +-
GIT-VERSION-GEN | 40 +++++++++++++
GNUmakefile | 143 ++++++++++++++++++++++++++++-----------------
Rakefile | 112 ++++++++++++++++++++++++++++++-----
clogger.gemspec | 19 +++++-
ext/clogger_ext/clogger.c | 13 +++-
lib/clogger.rb | 2 +-
test/test_clogger.rb | 40 +++++++++++++
9 files changed, 299 insertions(+), 77 deletions(-)
commit 0420598d0007d9d816d55c698ed1f9ac4e206433
Author: Eric Wong
Date: Tue Oct 6 13:46:20 2009 -0700
clogger 0.1.0
This release should help ensure compatibility with a
to-be-released version of Rack::Lint that allows subclasses of
the core String and Hash objects for users of the optional C
extension.
Eric Wong (6):
ext: convert non-Hashes #to_hash if possible
ext: ensure all objects we byte_xs are Strings
tests for subclassing
gemspec: disable the license= field for older RubyGems
GNUmakefile: fix grammar FAIL in comment
cleanup packaging and website/rdoc
commit cf543e57efa4b8d81121e712280bb6413719be35
Author: Eric Wong
Date: Tue Oct 6 13:24:05 2009 -0700
cleanup packaging and website/rdoc
commit 1e4b7c3d2fe12e4732ed816ebd75bb7dc81d6151
Author: Eric Wong
Date: Tue Oct 6 11:16:43 2009 -0700
GNUmakefile: fix grammar FAIL in comment
commit cf3be5aca27a82a1f6939cd6383f6b1c0ac0c602
Author: Eric Wong
Date: Tue Oct 6 11:12:07 2009 -0700
gemspec: disable the license= field for older RubyGems
commit 485fe222d304c9a795141532596b0575c3d2e6ea
Author: Eric Wong
Date: Tue Oct 6 12:03:11 2009 -0700
tests for subclassing
Rack::Lint will be relaxed in the next version to allow
subclasses of String and Hash objects, so ensure we're
good to go when the next version of Rack hits.
commit 2ca88db578a4b9143a5dfaa66ce38b9463e7e166
Author: Eric Wong
Date: Tue Oct 6 12:03:10 2009 -0700
ext: ensure all objects we byte_xs are Strings
Rack will be relaxing the spec to allow subclasses
of String objects. Just in case they're not compatible,
we'll convert them to strings.
commit c4eca8765e9aaf0d2736e764770d72f407affc16
Author: Eric Wong
Date: Tue Oct 6 12:03:09 2009 -0700
ext: convert non-Hashes #to_hash if possible
This is to remain compatible with Rack if it relaxes
Rack::Lint to allow subclasses.
|