summaryrefslogtreecommitdiff
path: root/lib/coderay/style.rb
blob: d0eb7aeea31fdef25449b2ba75e23a193ae1a1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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