Method: Chandler::Git#initialize
- Defined in:
- lib/chandler/git.rb
#initialize(path:, tag_mapper:) ⇒ Git
Initializes the Git object with the path to the ‘.git` directory of the desired git repository.
Chandler::Git.new(:path => “/path/to/my/project/.git”)
17 18 19 20 |
# File 'lib/chandler/git.rb', line 17 def initialize(path:, tag_mapper:) @path = path @tag_mapper = tag_mapper end |