module Vlad::Merb

Public Class Methods

maybe_sudo(cmd) click to toggle source

Runs cmd using sudo if the :merb_use_sudo variable is set.

# File lib/vlad/merb.rb, line 8
def self.maybe_sudo(cmd)
  if merb_use_sudo
    sudo cmd
  else
    run cmd
  end
end