Module: Redmine::Info
- Defined in:
- lib/redmine/info.rb
Class Method Summary
- + (Object) app_name
- + (Object) help_url
-
+ (Object) issue(issue_id)
Creates the url string to a specific Redmine issue.
- + (Object) url
- + (Object) versioned_name
Class Method Details
+ (Object) app_name
4 |
# File 'lib/redmine/info.rb', line 4 def app_name; 'Redmine' end |
+ (Object) help_url
6 |
# File 'lib/redmine/info.rb', line 6 def help_url; 'http://www.redmine.org/guide' end |
+ (Object) issue(issue_id)
Creates the url string to a specific Redmine issue
10 11 12 |
# File 'lib/redmine/info.rb', line 10 def issue(issue_id) url + 'issues/' + issue_id.to_s end |
+ (Object) url
5 |
# File 'lib/redmine/info.rb', line 5 def url; 'http://www.redmine.org/' end |
+ (Object) versioned_name
7 |
# File 'lib/redmine/info.rb', line 7 def versioned_name; "#{app_name} #{Redmine::VERSION}" end |