a53c86f063
Also removed the useless components directory. git-svn-id: http://redmine.rubyforge.org/svn/trunk@835 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
263 B
Ruby
11 lines
263 B
Ruby
module Redmine
|
|
module Info
|
|
class << self
|
|
def app_name; 'Redmine' end
|
|
def url; 'http://www.redmine.org/' end
|
|
def help_url; 'http://www.redmine.org/guide' end
|
|
def versioned_name; "#{app_name} #{Redmine::VERSION}" end
|
|
end
|
|
end
|
|
end
|