diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2016-02-13 17:14:48 +0100 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2016-02-13 17:14:48 +0100 |
commit | 5cc8c52f7ca0dc31eb85d065579d66dd0f0cd540 (patch) | |
tree | 47682e4141e1c52d888281cb3dd9a6a57f6e0513 /lib/coderay/styles | |
parent | 0ad3ddc26da51b3bdd0454859f894761a0155c1b (diff) | |
parent | 12a467ca21faad604655d5f2e7b87b42d7a30b4a (diff) | |
download | coderay-5cc8c52f7ca0dc31eb85d065579d66dd0f0cd540.tar.gz |
Merge pull request #190 from rubychan/autoload
Cleanup Folder structure
Diffstat (limited to 'lib/coderay/styles')
-rw-r--r-- | lib/coderay/styles/style.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/coderay/styles/style.rb b/lib/coderay/styles/style.rb new file mode 100644 index 0000000..a335386 --- /dev/null +++ b/lib/coderay/styles/style.rb @@ -0,0 +1,18 @@ +module CodeRay + + module Styles + + # Base class for styles. + # + # Styles are used by Encoders::HTML to colorize tokens. + class Style + extend Plugin + plugin_host Styles + + DEFAULT_OPTIONS = { } # :nodoc: + + end + + end + +end |