Class: Bundler::AutoUpdate::Logger

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

Overview

class Gemfile

Class Method Summary collapse

Class Method Details

.log(msg, prefix = "") ⇒ Object



168
169
170
# File 'lib/bundler_auto_update.rb', line 168

def self.log(msg, prefix = "")
  puts prefix + msg
end

.log_indent(msg) ⇒ Object



172
173
174
# File 'lib/bundler_auto_update.rb', line 172

def self.log_indent(msg)
  log(msg, "  - ")
end