module StartingBlocks module Bash def self.run command puts "Running: #{command}" if StartingBlocks.verbose text = `#{command}` result = $? { text: text, success: result.success?, exit_code: result.to_i } end end end