summaryrefslogtreecommitdiffstats
path: root/lib/redmine
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-12-03 22:33:08 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-12-03 22:33:08 +0000
commit5dbefbc40dadf5f407ba367cb524307011bd8f84 (patch)
tree6f7aefa2b5451ce7b7f15859f814881a001dbdf3 /lib/redmine
parent46fe61d51e8b8dc4966d9e2fb80d0d5f44bb7706 (diff)
downloadredmine-5dbefbc40dadf5f407ba367cb524307011bd8f84.tar.gz
redmine-5dbefbc40dadf5f407ba367cb524307011bd8f84.zip
Removed unused Redmine::About class.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10938 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine')
-rw-r--r--lib/redmine/about.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/redmine/about.rb b/lib/redmine/about.rb
deleted file mode 100644
index 0fcc29a97..000000000
--- a/lib/redmine/about.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-module Redmine
- class About
- def self.print_plugin_info
- plugins = Redmine::Plugin.registered_plugins
-
- if !plugins.empty?
- column_with = plugins.map {|internal_name, plugin| plugin.name.length}.max
- puts "\nAbout your Redmine plugins"
-
- plugins.each do |internal_name, plugin|
- puts sprintf("%-#{column_with}s %s", plugin.name, plugin.version)
- end
- end
- end
- end
-end