summaryrefslogtreecommitdiffstats
path: root/vendor/gems/coderay-1.0.0/lib/coderay/style.rb
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gems/coderay-1.0.0/lib/coderay/style.rb')
-rw-r--r--vendor/gems/coderay-1.0.0/lib/coderay/style.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/gems/coderay-1.0.0/lib/coderay/style.rb b/vendor/gems/coderay-1.0.0/lib/coderay/style.rb
new file mode 100644
index 000000000..df4704f41
--- /dev/null
+++ b/vendor/gems/coderay-1.0.0/lib/coderay/style.rb
@@ -0,0 +1,23 @@
+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