module Bovem::ConsoleMethods::Interactions::ClassMethods

Class methods to interact with the user and other processes.

Public Instance Methods

execute(command) click to toggle source

Executes a command and returns its output.

@param command [String] The command to execute. @return [String] The command's output.

# File lib/bovem/console.rb, line 553
def execute(command)
  `#{command}`
end