Class: Bundler::AutoUpdate::CommandRunner

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

Overview

class Dependency

Class Method Summary collapse

Class Method Details

.run(cmd) ⇒ Object



214
215
216
217
218
# File 'lib/bundler_auto_update.rb', line 214

def self.run(cmd)
  Logger.log cmd

  `#{cmd}`
end

.system(cmd) ⇒ Object



209
210
211
212
# File 'lib/bundler_auto_update.rb', line 209

def self.system(cmd)
  Logger.log cmd
  Kernel.system cmd
end