Mercurial > hg > soundsoftware-site
comparison vendor/gems/coderay-1.0.0/lib/coderay/style.rb @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
908:c6c2cbd0afee | 909:cbb26bc654de |
---|---|
1 module CodeRay | |
2 | |
3 # This module holds the Style class and its subclasses. | |
4 # | |
5 # See Plugin. | |
6 module Styles | |
7 extend PluginHost | |
8 plugin_path File.dirname(__FILE__), 'styles' | |
9 | |
10 # Base class for styles. | |
11 # | |
12 # Styles are used by Encoders::HTML to colorize tokens. | |
13 class Style | |
14 extend Plugin | |
15 plugin_host Styles | |
16 | |
17 DEFAULT_OPTIONS = { } # :nodoc: | |
18 | |
19 end | |
20 | |
21 end | |
22 | |
23 end |