840f18b1c7
git-svn-id: http://redmine.rubyforge.org/svn/trunk@682 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
208 B
Ruby
10 lines
208 B
Ruby
module Redmine
|
|
module Info
|
|
class << self
|
|
def app_name; 'Redmine' end
|
|
def url; 'http://www.redmine.org/' end
|
|
def versioned_name; "#{app_name} #{Redmine::VERSION}" end
|
|
end
|
|
end
|
|
end
|