Class: Tracker::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/tracker/base.rb

Overview

Tracker objects are responsible for interacting with issue trackers (bug trackers). They know how to recognise issue identifiers in strings (typically from SCM commit messages) and turn these into HTML links that point to the associated issue on an issue tracker installation running somewhere else.

Class Method Summary collapse

Class Method Details

.classesObject



8
9
10
11
12
13
14
# File 'lib/tracker/base.rb', line 8

def self.classes
  [
    ::Tracker::Jira::Project,
    ::Tracker::XForge::RubyForge,
    ::Tracker::Trac::Project
  ]
end