Class: ChangesSince

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

Defined Under Namespace

Classes: ChangelogPrinter, CommitParser

Class Method Summary collapse

Class Method Details

.fetch(tag, options = {}, teams = nil) ⇒ Object



11
12
13
14
15
16
# File 'lib/changes_since.rb', line 11

def self.fetch(tag, options={}, teams=nil)
  parser  = CommitParser.new(tag, options)
  commits = parser.parse
  printer = ChangelogPrinter.new(commits, teams, options)
  printer.print!
end