Class: PincodeFinder::Config

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



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

def initialize
  @github_owner = nil
  @github_repo  = nil
  @github_token = nil
end

Instance Attribute Details

#github_ownerObject

Returns the value of attribute github_owner.



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

def github_owner
  @github_owner
end

#github_repoObject

Returns the value of attribute github_repo.



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

def github_repo
  @github_repo
end

#github_tokenObject

Returns the value of attribute github_token.



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

def github_token
  @github_token
end