class EacRubyUtils::Envs::BaseEnv

def command(*args)

def command(*args)
  ::EacRubyUtils::Envs::Command.new(self, args)
end

def executable(*executable_new_args)

def executable(*executable_new_args)
  ::EacRubyUtils::Envs::Executable.new(self, *executable_new_args)
end

def file(path)

def file(path)
  ::EacRubyUtils::Envs::File.new(self, path)
end

def file_exist?(file)

DEPRECATED: Please use file(file).exist? instead.
def file_exist?(file)
  self.file(file).exist?
end