about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-06-06 06:47:02 +0000
committerEric Wong <normalperson@yhbt.net>2010-06-06 06:47:02 +0000
commite3dfea56ec8f189711f7904a9a05dbbfc0bd6acc (patch)
treec2422df07208cb4176b3ab80fe5095a9f86d2eed /lib
parentb895d3d0393a647d3602783bc53bf68e223e51c9 (diff)
downloadclogger-e3dfea56ec8f189711f7904a9a05dbbfc0bd6acc.tar.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/clogger.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/clogger.rb b/lib/clogger.rb
index a827632..8339f59 100644
--- a/lib/clogger.rb
+++ b/lib/clogger.rb
@@ -1,9 +1,13 @@
 # -*- encoding: binary -*-
 autoload :Rack, 'rack'
 
+# See the README for usage instructions
 class Clogger
+
+  # the version of Clogger, currently 0.4.0
   VERSION = '0.4.0'
 
+  # :stopdoc:
   OP_LITERAL = 0
   OP_REQUEST = 1
   OP_RESPONSE = 2
@@ -141,6 +145,7 @@ private
     end
   end
 
+  # :startdoc:
 end
 
 require 'clogger/format'