To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / gems / coderay-0.9.7 / lib / coderay / style.rb @ 442:753f1380d6bc

History | View | Annotate | Download (293 Bytes)

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