module Shoestrap::Shell

Public Class Methods

exec(command) click to toggle source

aa NOTE: do we really need a wrapper for a simple command like system?

# File lib/shoestrap/shell.rb, line 6
def self.exec(command)
  system "#{command}"
end