class Rbish::Shell
Public Class Methods
run(command)
click to toggle source
# File lib/rbish/shell.rb, line 3 def self.run(command) # TODO: make it better, by using one of the libraries below: # - open3 # - systemu # - mixlib-shellout puts `#{command}` end