diff options
author | murphy <murphy@rubychan.de> | 2006-07-10 00:32:57 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2006-07-10 00:32:57 +0000 |
commit | 9f4c7ab7553f9be7c9d14da0ba7462ad746c2f5d (patch) | |
tree | 686ee95cc9010314278846936476d1cf0bf04353 /lib/coderay/style.rb | |
parent | 42436798565c36a7d9582fcf587946d273083ab1 (diff) | |
download | coderay-9f4c7ab7553f9be7c9d14da0ba7462ad746c2f5d.tar.gz |
Big re-indenting - no more tabs!
Diffstat (limited to 'lib/coderay/style.rb')
-rw-r--r-- | lib/coderay/style.rb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/coderay/style.rb b/lib/coderay/style.rb index d0eb7ae..057f8d4 100644 --- a/lib/coderay/style.rb +++ b/lib/coderay/style.rb @@ -1,20 +1,20 @@ module CodeRay
- # This module holds the Style class and its subclasses.
- #
- # See Plugin.
- module Styles
- extend PluginHost
- plugin_path File.dirname(__FILE__), 'styles'
+ # 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
+ class Style
+ extend Plugin
+ plugin_host Styles
- DEFAULT_OPTIONS = { }
+ DEFAULT_OPTIONS = { }
- end
+ end
- end
+ end
end
|