Module: RestoreBundledWith
- Defined in:
- lib/restore_bundled_with.rb,
lib/restore_bundled_with/cli.rb,
lib/restore_bundled_with/lock.rb,
lib/restore_bundled_with/error.rb,
lib/restore_bundled_with/version.rb,
lib/restore_bundled_with/repository.rb
Defined Under Namespace
Classes: CLI, Lock, NoInputError, Repository
Constant Summary
collapse
- ISSUE_URL =
'https://github.com/packsaddle/ruby-restore_bundled_with/issues/new'
- VERSION =
'0.3.0'
Class Attribute Summary collapse
Class Method Summary
collapse
Class Attribute Details
.logger ⇒ Object
18
19
20
21
|
# File 'lib/restore_bundled_with.rb', line 18
def self.logger
return @logger if @logger
@logger = default_logger
end
|
Class Method Details
.default_logger ⇒ Object
11
12
13
14
15
16
|
# File 'lib/restore_bundled_with.rb', line 11
def self.default_logger
logger = Logger.new(STDERR)
logger.progname = "RestoreBundledWith #{VERSION}"
logger.level = Logger::WARN
logger
end
|