Class: Codeowners::Config

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

Overview

Connfigure and manage the git config file.

Instance Method Summary collapse

Constructor Details

#initialize(git = AnonymousGit.new) ⇒ Config

Returns a new instance of Config.



31
32
33
# File 'lib/codeowners/config.rb', line 31

def initialize(git = AnonymousGit.new)
  @git = git
end

Instance Method Details

#default_ownerObject



35
36
37
# File 'lib/codeowners/config.rb', line 35

def default_owner
  @git.config('user.owner')
end

#default_owner=(name) ⇒ Object



39
40
41
# File 'lib/codeowners/config.rb', line 39

def default_owner=(name)
  @git.config('user.owner', name)
end

#to_hObject



43
44
45
46
47
# File 'lib/codeowners/config.rb', line 43

def to_h
  {
    default_owner: default_owner
  }
end