summaryrefslogtreecommitdiff
path: root/test/samples/stream.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2013-09-20 17:47:19 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2013-09-20 17:47:19 +0200
commit9cd856dc12a14856b747faed7b5855b9de19d07c (patch)
tree82fea7943878c34d82f8fb3d232c6fe9144ff7f2 /test/samples/stream.rb
parent370c6d3c3257da94f68a520467751e078bfdd419 (diff)
parente93aae88985667189bb5b24ad0d5f54cb5fdba70 (diff)
downloadcoderay-9cd856dc12a14856b747faed7b5855b9de19d07c.tar.gz
Merge branch 'master' into possible-speedups
Diffstat (limited to 'test/samples/stream.rb')
-rw-r--r--test/samples/stream.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/samples/stream.rb b/test/samples/stream.rb
deleted file mode 100644
index 7ed8a22..0000000
--- a/test/samples/stream.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-require 'coderay'
-
-code = File.read($0) * 500
-puts "Size of code: %d KB" % [code.size / 1024]
-
-puts "Use your system's memory tracker to see how much RAM this takes."
-print 'Press some key to continue...'; gets
-
-require 'benchmark'
-e = CodeRay.encoder(:div)
-for do_stream in [true, false]
- puts "Scanning and encoding in %s mode, please wait..." %
- [do_stream ? 'streaming' : 'normal']
- output = ''
- time = Benchmark.realtime do
- if do_stream
- output = e.encode_stream(code, :ruby)
- else
- output = e.encode_tokens(t = CodeRay.scan(code, :ruby))
- end
- end
- puts 'Finished after %4.2f seconds.' % time
- puts "Size of output: %d KB" % [output.size / 1024]
- print 'Press some key to continue...'; gets
-end