Class: PushHandler::Config

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



7
8
9
10
11
# File 'lib/push_handler/config.rb', line 7

def initialize
	@repo = Hash.new('')
	@services = Hash.new()
	@commit_url = ''
end

Instance Attribute Details

#commit_urlObject

Returns the value of attribute commit_url.



4
5
6
# File 'lib/push_handler/config.rb', line 4

def commit_url
  @commit_url
end

#repoObject

Returns the value of attribute repo.



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

def repo
  @repo
end

#servicesObject

Returns the value of attribute services.



5
6
7
# File 'lib/push_handler/config.rb', line 5

def services
  @services
end