Class: Dependencies::Apt

Inherits:
Dependency show all
Defined in:
lib/dependencies/apt.rb

Constant Summary collapse

PACKAGE_NAME_SEPARATOR =
"/"

Constants inherited from Dependency

Dependency::DESCRIPTION_TYPE_WIDTH

Instance Attribute Summary

Attributes inherited from Dependency

#name

Instance Method Summary collapse

Methods inherited from Dependency

#always_act?, #exit_code, #initialize, #output, #success?, #type

Constructor Details

This class inherits a constructor from Dependency

Instance Method Details

#meetObject



16
17
18
# File 'lib/dependencies/apt.rb', line 16

def meet
	execute("#{sudo_string}apt-get install -y #{name}")
end

#met?Boolean

Returns:

  • (Boolean)


10
11
12
13
14
# File 'lib/dependencies/apt.rb', line 10

def met?
	return apt_cache_policy.installed_version == package_version if package_version

	apt_cache_policy.installed?
end

#should_meet?Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/dependencies/apt.rb', line 25

def should_meet?
	`uname`.chomp == "Linux" && system("which apt-get")
end

#unmeetObject



20
21
22
23
# File 'lib/dependencies/apt.rb', line 20

def unmeet
	# do nothing; we don't want to uninstall packages and reinstall them every time
	true
end