Module: TicGit

Defined in:
lib/ticgit.rb,
lib/ticgit/cli.rb,
lib/ticgit/base.rb,
lib/ticgit/ticket.rb,
lib/ticgit/comment.rb

Overview

TicGit Library

This library implements a git based ticketing system in a git repo

Author

Scott Chacon ([email protected])

License

MIT License

Defined Under Namespace

Classes: Base, CLI, Comment, NoRepoFound, Ticket

Class Method Summary collapse

Class Method Details

.open(git_dir, options = {}) ⇒ Object

options

:logger => Logger.new(STDOUT)


25
26
27
# File 'lib/ticgit.rb', line 25

def self.open(git_dir, options = {})
  Base.new(git_dir, options)
end