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



228
229
230
# File 'lib/bundler_auto_update.rb', line 228

def self.run(cmd)
  `#{cmd}`
end

.system(cmd) ⇒ Object



222
223
224
225
226
# File 'lib/bundler_auto_update.rb', line 222

def self.system(cmd)
  Logger.log_cmd cmd

  Kernel.system cmd
end