summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2010-05-01 02:58:17 +0000
committermurphy <murphy@rubychan.de>2010-05-01 02:58:17 +0000
commit7bf48ce6cf5c75a2278d6545f02781a79f53ebbb (patch)
treec0f87f427bf4d8b8a8c56ec1f722367949c8ff5b /lib/coderay/encoders
parent6f1178b7fb8967dda865433ecb9e309f6cb733e1 (diff)
downloadcoderay-7bf48ce6cf5c75a2278d6545f02781a79f53ebbb.tar.gz
Got rid of the old streaming system (see #142).
Diffstat (limited to 'lib/coderay/encoders')
-rw-r--r--lib/coderay/encoders/count.rb1
-rw-r--r--lib/coderay/encoders/debug.rb1
-rw-r--r--lib/coderay/encoders/html.rb1
-rw-r--r--lib/coderay/encoders/null.rb1
-rw-r--r--lib/coderay/encoders/statistic.rb1
-rw-r--r--lib/coderay/encoders/text.rb1
-rw-r--r--lib/coderay/encoders/token_kind_filter.rb1
-rw-r--r--lib/coderay/encoders/xml.rb1
8 files changed, 0 insertions, 8 deletions
diff --git a/lib/coderay/encoders/count.rb b/lib/coderay/encoders/count.rb
index 451a7f8..f4dd0c8 100644
--- a/lib/coderay/encoders/count.rb
+++ b/lib/coderay/encoders/count.rb
@@ -7,7 +7,6 @@ module Encoders
# Text and block tokens are counted.
class Count < Encoder
- include Streamable
register_for :count
protected
diff --git a/lib/coderay/encoders/debug.rb b/lib/coderay/encoders/debug.rb
index 89e430f..c97631b 100644
--- a/lib/coderay/encoders/debug.rb
+++ b/lib/coderay/encoders/debug.rb
@@ -15,7 +15,6 @@ module Encoders
# See also: Scanners::Debug
class Debug < Encoder
- include Streamable
register_for :debug
FILE_EXTENSION = 'raydebug'
diff --git a/lib/coderay/encoders/html.rb b/lib/coderay/encoders/html.rb
index 807fb42..0a55a02 100644
--- a/lib/coderay/encoders/html.rb
+++ b/lib/coderay/encoders/html.rb
@@ -89,7 +89,6 @@ module Encoders
# Default: false
class HTML < Encoder
- include Streamable
register_for :html
FILE_EXTENSION = 'html'
diff --git a/lib/coderay/encoders/null.rb b/lib/coderay/encoders/null.rb
index 7a8899b..b815c2f 100644
--- a/lib/coderay/encoders/null.rb
+++ b/lib/coderay/encoders/null.rb
@@ -6,7 +6,6 @@ module Encoders
# Does nothing and returns an empty string.
class Null < Encoder
- include Streamable
register_for :null
# Defined for faster processing.
diff --git a/lib/coderay/encoders/statistic.rb b/lib/coderay/encoders/statistic.rb
index d267b21..455da46 100644
--- a/lib/coderay/encoders/statistic.rb
+++ b/lib/coderay/encoders/statistic.rb
@@ -7,7 +7,6 @@ module Encoders
# Alias: +stats+
class Statistic < Encoder
- include Streamable
register_for :stats, :statistic
attr_reader :type_stats, :real_token_count # :nodoc:
diff --git a/lib/coderay/encoders/text.rb b/lib/coderay/encoders/text.rb
index ecbf624..2dfb224 100644
--- a/lib/coderay/encoders/text.rb
+++ b/lib/coderay/encoders/text.rb
@@ -14,7 +14,6 @@ module Encoders
# Default: empty String
class Text < Encoder
- include Streamable
register_for :text
FILE_EXTENSION = 'txt'
diff --git a/lib/coderay/encoders/token_kind_filter.rb b/lib/coderay/encoders/token_kind_filter.rb
index fd3df44..431794d 100644
--- a/lib/coderay/encoders/token_kind_filter.rb
+++ b/lib/coderay/encoders/token_kind_filter.rb
@@ -25,7 +25,6 @@ module Encoders
# See also: CommentFilter
class TokenKindFilter < Filter
- include Streamable
register_for :token_kind_filter
DEFAULT_OPTIONS = {
diff --git a/lib/coderay/encoders/xml.rb b/lib/coderay/encoders/xml.rb
index 0006d75..d3e8832 100644
--- a/lib/coderay/encoders/xml.rb
+++ b/lib/coderay/encoders/xml.rb
@@ -6,7 +6,6 @@ module Encoders
# Uses REXML. Very slow.
class XML < Encoder
- include Streamable
register_for :xml
FILE_EXTENSION = 'xml'