diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2015-04-03 16:30:33 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2015-04-03 16:30:33 +0200 |
commit | e8bef1034bedcc4ae1698657ea349b455edff58d (patch) | |
tree | 2bf13cec9a390e2e56d965b17f656bf5e17a06b1 /lib/coderay.rb | |
parent | 0cd3e62ee4aeec80e749cd88b36ea367ac79ffd4 (diff) | |
download | coderay-e8bef1034bedcc4ae1698657ea349b455edff58d.tar.gz |
move RuleBasedScanner into own file
Diffstat (limited to 'lib/coderay.rb')
-rw-r--r-- | lib/coderay.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/coderay.rb b/lib/coderay.rb index f759ed6..14e45aa 100644 --- a/lib/coderay.rb +++ b/lib/coderay.rb @@ -153,6 +153,9 @@ module CodeRay autoload :Encoders, coderay_path('encoder') autoload :Styles, coderay_path('style') + # DSL Scanner + autoload :RuleBasedScanner, coderay_path('rule_based_scanner') + # convenience access and reusable Encoder/Scanner pair autoload :Duo, coderay_path('duo') |