Class: PairingMatrix::Config

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(local, gitlab, github) ⇒ Config

Returns a new instance of Config.



5
6
7
8
9
# File 'lib/pairing_matrix/config/config.rb', line 5

def initialize(local, gitlab, github)
  @local = local
  @gitlab = gitlab
  @github = github
end

Instance Attribute Details

#authors_regexObject (readonly)

Returns the value of attribute authors_regex.



3
4
5
# File 'lib/pairing_matrix/config/config.rb', line 3

def authors_regex
  @authors_regex
end

#githubObject (readonly)

Returns the value of attribute github.



3
4
5
# File 'lib/pairing_matrix/config/config.rb', line 3

def github
  @github
end

#gitlabObject (readonly)

Returns the value of attribute gitlab.



3
4
5
# File 'lib/pairing_matrix/config/config.rb', line 3

def gitlab
  @gitlab
end

#localObject (readonly)

Returns the value of attribute local.



3
4
5
# File 'lib/pairing_matrix/config/config.rb', line 3

def local
  @local
end