diff options
author | murphy <murphy@rubychan.de> | 2005-11-05 02:28:36 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2005-11-05 02:28:36 +0000 |
commit | 0b60a93641a5bfafb2b07f81a8e9c7da03ef3c86 (patch) | |
tree | 2ec0db388cc2f54f0e43e93a41471cd20e70940c /lib/coderay/encoders/html.rb | |
parent | 5ffcc03ee3df300cef8c717f3c3b7d54643d82ce (diff) | |
download | coderay-0b60a93641a5bfafb2b07f81a8e9c7da03ef3c86.tar.gz |
New helper module scheme, step 3
Diffstat (limited to 'lib/coderay/encoders/html.rb')
-rw-r--r-- | lib/coderay/encoders/html.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/coderay/encoders/html.rb b/lib/coderay/encoders/html.rb index 22738d8..986bf00 100644 --- a/lib/coderay/encoders/html.rb +++ b/lib/coderay/encoders/html.rb @@ -80,9 +80,9 @@ module Encoders :hint => false,
}
- require 'coderay/encoders/helpers/html_helper'
- require 'coderay/encoders/helpers/html_output'
- require 'coderay/encoders/helpers/html_css'
+ require 'coderay/encoders/html/classes'
+ require 'coderay/encoders/html/output'
+ require 'coderay/encoders/html/css'
def initialize(*)
super
|