summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders/count.rb
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2006-07-10 00:32:57 +0000
committermurphy <murphy@rubychan.de>2006-07-10 00:32:57 +0000
commit9f4c7ab7553f9be7c9d14da0ba7462ad746c2f5d (patch)
tree686ee95cc9010314278846936476d1cf0bf04353 /lib/coderay/encoders/count.rb
parent42436798565c36a7d9582fcf587946d273083ab1 (diff)
downloadcoderay-9f4c7ab7553f9be7c9d14da0ba7462ad746c2f5d.tar.gz
Big re-indenting - no more tabs!
Diffstat (limited to 'lib/coderay/encoders/count.rb')
-rw-r--r--lib/coderay/encoders/count.rb24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/coderay/encoders/count.rb b/lib/coderay/encoders/count.rb
index c662ead..6885541 100644
--- a/lib/coderay/encoders/count.rb
+++ b/lib/coderay/encoders/count.rb
@@ -1,21 +1,21 @@
module CodeRay
module Encoders
- class Count < Encoder
+ class Count < Encoder
- include Streamable
- register_for :count
+ include Streamable
+ register_for :count
- protected
+ protected
- def setup options
- @out = 0
- end
+ def setup options
+ @out = 0
+ end
- def token text, kind
- @out += 1
- end
- end
+ def token text, kind
+ @out += 1
+ end
+ end
-end
+end
end