class EacRubyUtils::Envs::BaseEnv

Public Instance Methods

command(*args) click to toggle source
# File lib/eac_ruby_utils/envs/base_env.rb, line 10
def command(*args)
  ::EacRubyUtils::Envs::Command.new(self, args)
end
executable(*executable_new_args) click to toggle source
# File lib/eac_ruby_utils/envs/base_env.rb, line 19
def executable(*executable_new_args)
  ::EacRubyUtils::Envs::Executable.new(self, *executable_new_args)
end
file(path) click to toggle source
# File lib/eac_ruby_utils/envs/base_env.rb, line 23
def file(path)
  ::EacRubyUtils::Envs::File.new(self, path)
end
file_exist?(file) click to toggle source

DEPRECATED: Please use file(file).exist? instead.

# File lib/eac_ruby_utils/envs/base_env.rb, line 15
def file_exist?(file)
  self.file(file).exist?
end