view vendor/plugins/coderay-0.9.2/lib/coderay/style.rb @ 60:cf39b52d24b4 luisf

DEVELOPMENT COMMIT: The description can now be seen and edited BUT when a new user registers the informations is not saved to the correct table.
author luisf
date Wed, 01 Dec 2010 18:04:19 +0000
parents 513646585e45
children
line wrap: on
line source
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