Class: Redmine::About

Inherits:
Object
  • Object
show all
Defined in:
lib/redmine/about.rb

Class Method Summary collapse

Class Method Details



3
4
5
6
7
8
9
10
11
12
13
14
# File 'lib/redmine/about.rb', line 3

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