Class: PairingMatrix::Config
- Inherits:
-
Object
- Object
- PairingMatrix::Config
- Defined in:
- lib/pairing_matrix/config/config.rb
Instance Attribute Summary collapse
-
#authors_regex ⇒ Object
readonly
Returns the value of attribute authors_regex.
-
#github ⇒ Object
readonly
Returns the value of attribute github.
-
#gitlab ⇒ Object
readonly
Returns the value of attribute gitlab.
-
#local ⇒ Object
readonly
Returns the value of attribute local.
Instance Method Summary collapse
-
#initialize(local, gitlab, github) ⇒ Config
constructor
A new instance of Config.
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_regex ⇒ Object (readonly)
Returns the value of attribute authors_regex.
3 4 5 |
# File 'lib/pairing_matrix/config/config.rb', line 3 def @authors_regex end |
#github ⇒ Object (readonly)
Returns the value of attribute github.
3 4 5 |
# File 'lib/pairing_matrix/config/config.rb', line 3 def github @github end |
#gitlab ⇒ Object (readonly)
Returns the value of attribute gitlab.
3 4 5 |
# File 'lib/pairing_matrix/config/config.rb', line 3 def gitlab @gitlab end |
#local ⇒ Object (readonly)
Returns the value of attribute local.
3 4 5 |
# File 'lib/pairing_matrix/config/config.rb', line 3 def local @local end |