summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/README3
-rw-r--r--lib/coderay.rb2
-rw-r--r--lib/coderay/duo.rb2
-rw-r--r--lib/coderay/helpers/plugin.rb2
-rw-r--r--lib/coderay/scanner.rb2
-rw-r--r--lib/coderay/scanners/nitro_xhtml.rb2
-rw-r--r--lib/coderay/scanners/rhtml.rb2
-rw-r--r--lib/coderay/scanners/xml.rb2
8 files changed, 1 insertions, 16 deletions
diff --git a/lib/README b/lib/README
index 2a558c3..195dca8 100644
--- a/lib/README
+++ b/lib/README
@@ -23,7 +23,6 @@ Author:: murphy (Kornelius Kalnbach)
Contact:: murphy rubychan de
Website:: coderay.rubychan.de[http://coderay.rubychan.de]
License:: GNU LGPL; see LICENSE file in the main directory.
-Subversion:: $Id$
== Installation
@@ -34,7 +33,7 @@ You need RubyGems[http://rubyforge.org/frs/?group_id=126].
=== Dependencies
-CodeRay needs Ruby 1.8.6 or later. It should also run with Ruby 1.9 and JRuby.
+CodeRay needs Ruby 1.8.6 or later. It also runs with Ruby 1.9.1+ and JRuby 1.1+.
== Example Usage
diff --git a/lib/coderay.rb b/lib/coderay.rb
index dfcfe59..51ff86f 100644
--- a/lib/coderay.rb
+++ b/lib/coderay.rb
@@ -1,7 +1,5 @@
# = CodeRay Library
#
-# $Id$
-#
# CodeRay is a Ruby library for syntax highlighting.
#
# I try to make CodeRay easy to use and intuitive, but at the same time fully featured, complete,
diff --git a/lib/coderay/duo.rb b/lib/coderay/duo.rb
index 9d11c0e..5468dda 100644
--- a/lib/coderay/duo.rb
+++ b/lib/coderay/duo.rb
@@ -2,8 +2,6 @@ module CodeRay
# = Duo
#
- # $Id: scanner.rb 123 2006-03-21 14:46:34Z murphy $
- #
# A Duo is a convenient way to use CodeRay. You just create a Duo,
# giving it a lang (language of the input code) and a format (desired
# output format), and call Duo#highlight with the code.
diff --git a/lib/coderay/helpers/plugin.rb b/lib/coderay/helpers/plugin.rb
index 6f074c3..3aa79e4 100644
--- a/lib/coderay/helpers/plugin.rb
+++ b/lib/coderay/helpers/plugin.rb
@@ -2,8 +2,6 @@ module CodeRay
# = PluginHost
#
-# $Id$
-#
# A simple subclass plugin system.
#
# Example:
diff --git a/lib/coderay/scanner.rb b/lib/coderay/scanner.rb
index 371c858..fd5625e 100644
--- a/lib/coderay/scanner.rb
+++ b/lib/coderay/scanner.rb
@@ -4,8 +4,6 @@ module CodeRay
# = Scanners
#
- # $Id$
- #
# This module holds the Scanner class and its subclasses.
# For example, the Ruby scanner is named CodeRay::Scanners::Ruby
# can be found in coderay/scanners/ruby.
diff --git a/lib/coderay/scanners/nitro_xhtml.rb b/lib/coderay/scanners/nitro_xhtml.rb
index 4a8ee96..871ce17 100644
--- a/lib/coderay/scanners/nitro_xhtml.rb
+++ b/lib/coderay/scanners/nitro_xhtml.rb
@@ -5,8 +5,6 @@ module Scanners
load :ruby
# Nitro XHTML Scanner
- #
- # $Id$
class NitroXHTML < Scanner
include Streamable
diff --git a/lib/coderay/scanners/rhtml.rb b/lib/coderay/scanners/rhtml.rb
index 18cc60b..ca8196a 100644
--- a/lib/coderay/scanners/rhtml.rb
+++ b/lib/coderay/scanners/rhtml.rb
@@ -5,8 +5,6 @@ module Scanners
load :ruby
# RHTML Scanner
- #
- # $Id$
class RHTML < Scanner
include Streamable
diff --git a/lib/coderay/scanners/xml.rb b/lib/coderay/scanners/xml.rb
index bc6020a..0c7eab4 100644
--- a/lib/coderay/scanners/xml.rb
+++ b/lib/coderay/scanners/xml.rb
@@ -5,8 +5,6 @@ module Scanners
# XML Scanner
#
- # $Id$
- #
# Currently this is the same scanner as Scanners::HTML.
class XML < HTML