1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
module CodeRay # This module holds the Style class and its subclasses. # # See Plugin. module Styles extend PluginHost plugin_path File.dirname(__FILE__), 'styles' autoload :Style, CodeRay.coderay_path('styles', 'style') end end