mirror of
https://github.com/redmine/redmine.git
synced 2025-10-29 01:06:20 +01:00
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
|