diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2011-12-27 02:45:32 +0100 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2011-12-27 02:45:32 +0100 |
commit | 964397d4bfbcbbd27d51e252faf25e291429e7d9 (patch) | |
tree | 794be4a7e15f413a0812cdc3de69a871d048eebe /lib/coderay/scanners/diff.rb | |
parent | c8e21f2e6c83fffcb18e4e1b130bf4b3cf6b50de (diff) | |
download | coderay-964397d4bfbcbbd27d51e252faf25e291429e7d9.tar.gz |
let autoloading to the work (fix test warnings)
Diffstat (limited to 'lib/coderay/scanners/diff.rb')
-rw-r--r-- | lib/coderay/scanners/diff.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/coderay/scanners/diff.rb b/lib/coderay/scanners/diff.rb index 52e23d5..9e899c3 100644 --- a/lib/coderay/scanners/diff.rb +++ b/lib/coderay/scanners/diff.rb @@ -16,8 +16,6 @@ module Scanners protected - require 'coderay/helpers/file_type' - def scan_tokens encoder, options line_kind = nil @@ -50,7 +48,7 @@ module Scanners if match = scan(/.*?(?=$|[\t\n\x00]| \(revision)/) encoder.text_token match, :filename if options[:highlight_code] && match != '/dev/null' - file_type = FileType.fetch(match, :text) + file_type = CodeRay::FileType.fetch(match, :text) file_type = :text if file_type == :diff content_scanner = scanners[file_type] content_scanner_entry_state = nil |