comparison lib/redmine/info.rb @ 0:513646585e45

* Import Redmine trunk SVN rev 3859
author Chris Cannam
date Fri, 23 Jul 2010 15:52:44 +0100
parents
children 9f4ebcdd78a6 433d4f72a19b
comparison
equal deleted inserted replaced
-1:000000000000 0:513646585e45
1 module Redmine
2 module Info
3 class << self
4 def app_name; 'Redmine' end
5 def url; 'http://www.redmine.org/' end
6 def help_url; 'http://www.redmine.org/guide' end
7 def versioned_name; "#{app_name} #{Redmine::VERSION}" end
8
9 # Creates the url string to a specific Redmine issue
10 def issue(issue_id)
11 url + 'issues/' + issue_id.to_s
12 end
13 end
14 end
15 end