Class: ChangesSince
- Inherits:
-
Object
- Object
- ChangesSince
- 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, ={}, teams=nil) parser = CommitParser.new(tag, ) commits = parser.parse printer = ChangelogPrinter.new(commits, teams, ) printer.print! end |