Method: Gitit::Git#initialize

Defined in:
lib/gitit/git.rb

#initialize(location) ⇒ Git





20
21
22
23
24
# File 'lib/gitit/git.rb', line 20

def initialize(location)
  @repo = Repo.new(location)
  @config = Config.new(repo)
  @status = Status.new(repo)
end