Sha256: 64834a6fe38aae8ca850e6e666f59237752ed9149c95754720a8256561e5bc36
Contents?: true
Size: 681 Bytes
Versions: 53
Compression:
Stored size: 681 Bytes
Contents
module MetaProject module Tracker # 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 Base def self.classes [ Jira::JiraTracker, Trac::TracTracker, XForge::RubyForgeTracker, XForge::SourceForgeTracker, ] end def issue(issue_identifier) Issue.new(self, :identifier => issue_identifier) end end end end
Version data entries
53 entries across 53 versions & 3 rubygems