Mercurial > hg > soundsoftware-site
comparison vendor/gems/coderay-0.9.7/lib/coderay/style.rb @ 523:0b6c82dead28 luisf
Merge from branch "cannam"
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 25 Jul 2011 14:23:37 +0100 |
parents | 0579821a129a |
children |
comparison
equal
deleted
inserted
replaced
318:f7c525dc7585 | 523:0b6c82dead28 |
---|---|
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 |