Chris@909: module Redmine Chris@909: module Info Chris@909: class << self Chris@909: def app_name; 'Redmine' end Chris@909: def url; 'http://www.redmine.org/' end Chris@909: def help_url; 'http://www.redmine.org/guide' end Chris@909: def versioned_name; "#{app_name} #{Redmine::VERSION}" end Chris@909: Chris@909: # Creates the url string to a specific Redmine issue Chris@909: def issue(issue_id) Chris@909: url + 'issues/' + issue_id.to_s Chris@909: end Chris@909: end Chris@909: end Chris@909: end