##// END OF EJS Templates
Merged r4051 from trunk....
Merged r4051 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@4121 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2676:fbfb34949677
r4007:d2a4265f86e4
Show More
info.rb
15 lines | 399 B | text/x-ruby | RubyLexer
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
# Creates the url string to a specific Redmine issue
def issue(issue_id)
url + 'issues/' + issue_id.to_s
end
end
end
end