class Also

Constants

VERSION

Public Class Methods

new(arguments, options) click to toggle source
# File lib/also.rb, line 7
def initialize(arguments, options)
  arguments.each do |argument|
    async.execute(argument.split(" "))
  end
end

Public Instance Methods

execute(command) click to toggle source
# File lib/also.rb, line 13
def execute(command)
  Subprocess.check_call(command)
end