Class: Bundler::AutoUpdate::Logger
- Inherits:
-
Object
- Object
- Bundler::AutoUpdate::Logger
- Defined in:
- lib/bundler_auto_update.rb
Overview
class Gemfile
Class Method Summary collapse
- .log(msg, prefix = "") ⇒ Object
-
.log_cmd(msg) ⇒ Object
Log command: “ > bundle update”.
-
.log_indent(msg) ⇒ Object
Log with indentation: “ - Log message”.
Class Method Details
.log(msg, prefix = "") ⇒ Object
213 214 215 |
# File 'lib/bundler_auto_update.rb', line 213 def self.log(msg, prefix = "") puts prefix + msg end |
.log_cmd(msg) ⇒ Object
Log command: “ > bundle update”
227 228 229 |
# File 'lib/bundler_auto_update.rb', line 227 def self.log_cmd(msg) log(msg, " > ") end |
.log_indent(msg) ⇒ Object
Log with indentation: “ - Log message”
220 221 222 |
# File 'lib/bundler_auto_update.rb', line 220 def self.log_indent(msg) log(msg, " - ") end |