summaryrefslogtreecommitdiff
path: root/lib/coderay/style.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2013-10-22 01:11:31 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2013-10-22 01:16:32 +0200
commitb09e97b08c3c073e79159ff09f6a7e0779fcfd2e (patch)
tree03760e46268a69bdc67418afa34892a0f99040fc /lib/coderay/style.rb
parente93aae88985667189bb5b24ad0d5f54cb5fdba70 (diff)
downloadcoderay-b09e97b08c3c073e79159ff09f6a7e0779fcfd2e.tar.gz
use autoload again
Diffstat (limited to 'lib/coderay/style.rb')
-rw-r--r--lib/coderay/style.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/coderay/style.rb b/lib/coderay/style.rb
deleted file mode 100644
index df4704f..0000000
--- a/lib/coderay/style.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-module CodeRay
-
- # This module holds the Style class and its subclasses.
- #
- # See Plugin.
- module Styles
- extend PluginHost
- plugin_path File.dirname(__FILE__), '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