Class: BundlerSkills::CLI::StdoutLogger
- Inherits:
-
Object
- Object
- BundlerSkills::CLI::StdoutLogger
- Defined in:
- lib/bundler_skills/cli.rb
Overview
Minimal logger matching the subset of Bundler.ui that Synchronizer/Linker use (info/warn/error/confirm), writing to stdout/stderr.
Instance Method Summary collapse
Instance Method Details
#confirm(message) ⇒ Object
127 |
# File 'lib/bundler_skills/cli.rb', line 127 def confirm() = $stdout.puts() |
#error(message) ⇒ Object
129 |
# File 'lib/bundler_skills/cli.rb', line 129 def error() = $stderr.puts() |
#info(message) ⇒ Object
126 |
# File 'lib/bundler_skills/cli.rb', line 126 def info() = $stdout.puts() |
#warn(message) ⇒ Object
128 |
# File 'lib/bundler_skills/cli.rb', line 128 def warn() = $stderr.puts() |