Adds a simple script/about.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9601 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
6fca028905
commit
5b680625c1
|
@ -5,6 +5,25 @@ module Redmine
|
||||||
def url; 'http://www.redmine.org/' end
|
def url; 'http://www.redmine.org/' end
|
||||||
def help_url; 'http://www.redmine.org/guide' end
|
def help_url; 'http://www.redmine.org/guide' end
|
||||||
def versioned_name; "#{app_name} #{Redmine::VERSION}" end
|
def versioned_name; "#{app_name} #{Redmine::VERSION}" end
|
||||||
|
|
||||||
|
def environment
|
||||||
|
s = "Environment:\n"
|
||||||
|
s << [
|
||||||
|
["Redmine version", Redmine::VERSION],
|
||||||
|
["Ruby version", "#{RUBY_VERSION} (#{RUBY_PLATFORM})"],
|
||||||
|
["Rails version", Rails::VERSION::STRING],
|
||||||
|
["Environment", Rails.env],
|
||||||
|
["Database adapter", ActiveRecord::Base.connection.adapter_name]
|
||||||
|
].map {|info| " %-40s %s" % info}.join("\n")
|
||||||
|
s << "\nRedmine plugins:\n"
|
||||||
|
|
||||||
|
plugins = Redmine::Plugin.all
|
||||||
|
if plugins.any?
|
||||||
|
s << plugins.map {|plugin| " %-40s %s" % [plugin.id.to_s, plugin.version.to_s]}.join("\n")
|
||||||
|
else
|
||||||
|
s << " no plugin installed"
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
|
ENV["RAILS_ENV"] ||= "production"
|
||||||
|
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
||||||
|
puts
|
||||||
|
puts Redmine::Info.environment
|
|
@ -0,0 +1,27 @@
|
||||||
|
# Redmine - project management software
|
||||||
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU General Public License
|
||||||
|
# as published by the Free Software Foundation; either version 2
|
||||||
|
# of the License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
require File.expand_path('../../../../test_helper', __FILE__)
|
||||||
|
|
||||||
|
class Redmine::InfoTest < ActiveSupport::TestCase
|
||||||
|
def test_environment
|
||||||
|
env = Redmine::Info.environment
|
||||||
|
|
||||||
|
assert_kind_of String, env
|
||||||
|
assert_match 'Redmine version', env
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue