summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/ruby.rb
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2006-10-18 08:33:33 +0000
committermurphy <murphy@rubychan.de>2006-10-18 08:33:33 +0000
commit4d7ce5f7037580a127ae26d36f49ac5cdf49000d (patch)
tree5301411f9d019e2fc58858383f941963feaa60de /lib/coderay/scanners/ruby.rb
parent2c0a26c2f541fdd74d7af2d814c91d799121f761 (diff)
downloadcoderay-4d7ce5f7037580a127ae26d36f49ac5cdf49000d.tar.gz
Fixed functional test.
Fixed Ruby scanner (/= was scanned as regexp!) Made bench.rb run from any folder. Made scanner test diff function work via EDITOR instead of gvimdiff.
Diffstat (limited to 'lib/coderay/scanners/ruby.rb')
-rw-r--r--lib/coderay/scanners/ruby.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/scanners/ruby.rb b/lib/coderay/scanners/ruby.rb
index 77fe664..1ad9d03 100644
--- a/lib/coderay/scanners/ruby.rb
+++ b/lib/coderay/scanners/ruby.rb
@@ -167,7 +167,7 @@ module Scanners
end
end
## experimental!
- fancy_allowed = regexp_allowed = :set if patterns::REGEXP_ALLOWED[match] or check(/\s+(?:%\S|\/\S)/)
+ fancy_allowed = regexp_allowed = :set if patterns::REGEXP_ALLOWED[match] or check(/\s+[%\/][^\s=]/)
# OPERATORS #
elsif (not last_token_dot and match = scan(/ ==?=? | \.\.?\.? | [\(\)\[\]\{\}] | :: | , /x)) or