mirror of
https://github.com/redmine/redmine.git
synced 2025-11-09 06:46:01 +01:00
21 lines
293 B
Ruby
21 lines
293 B
Ruby
|
|
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
|