Module: GithubStatusNotifier
- Defined in:
- lib/github_status_notifier.rb,
lib/github_status_notifier/cli.rb,
lib/github_status_notifier/error.rb,
lib/github_status_notifier/client.rb,
lib/github_status_notifier/version.rb,
lib/github_status_notifier/notifier.rb,
lib/github_status_notifier/repository.rb
Defined Under Namespace
Classes: ArgumentError, CLI, Client, GithubStatusNotifierError, InvalidStateError, Notifier, Repository
Constant Summary
collapse
- VERSION =
'0.1.0'
Class Attribute Summary collapse
Class Method Summary
collapse
Class Attribute Details
.logger ⇒ Object
17
18
19
20
|
# File 'lib/github_status_notifier.rb', line 17
def self.logger
return @logger if @logger
@logger = default_logger
end
|
Class Method Details
.default_logger ⇒ Object
10
11
12
13
14
15
|
# File 'lib/github_status_notifier.rb', line 10
def self.default_logger
logger = Logger.new(STDERR)
logger.progname = 'GithubStatusNotifier'
logger.level = Logger::WARN
logger
end
|