Mercurial > hg > soundsoftware-site
comparison vendor/gems/coderay-0.9.7/lib/coderay/style.rb @ 524:1248a47e81b3 feature_36
Merge from branch "luisf"
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 25 Jul 2011 14:39:38 +0100 |
parents | 0579821a129a |
children |
comparison
equal
deleted
inserted
replaced
519:3be6bc3c2a17 | 524:1248a47e81b3 |
---|---|
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 class Style | |
11 extend Plugin | |
12 plugin_host Styles | |
13 | |
14 DEFAULT_OPTIONS = { } | |
15 | |
16 end | |
17 | |
18 end | |
19 | |
20 end |