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