class Hookers::Changelog::Matchers::PivotalTrackerMatcher

Constants

REGEXP
SUBPATTERN

Public Class Methods

scan(commit) click to toggle source
# File lib/hookers/changelog/matchers.rb, line 88
def self.scan(commit)
  blocks_of(commit, REGEXP, SUBPATTERN).map { |e| new(commit, *e) }
end

Public Instance Methods

type() click to toggle source
# File lib/hookers/changelog/matchers.rb, line 92
def type
  "FEATURE"
end
uri() click to toggle source
# File lib/hookers/changelog/matchers.rb, line 96
def uri
  "http://pivotaltracker.com/story/show/#{self.number}"
end