summaryrefslogtreecommitdiff
path: root/lib/coderay/style.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay/style.rb')
-rw-r--r--lib/coderay/style.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/coderay/style.rb b/lib/coderay/style.rb
new file mode 100644
index 0000000..d0eb7ae
--- /dev/null
+++ b/lib/coderay/style.rb
@@ -0,0 +1,20 @@
+module CodeRay
+
+ # This module holds the Style class and its subclasses.
+ #
+ # See Plugin.
+ module Styles
+ extend PluginHost
+ plugin_path File.dirname(__FILE__), 'styles'
+
+ class Style
+ extend Plugin
+ plugin_host Styles
+
+ DEFAULT_OPTIONS = { }
+
+ end
+
+ end
+
+end