Class: Dependencies::Apt
- Inherits:
-
VersionedDependency
- Object
- Dependency
- VersionedDependency
- Dependencies::Apt
- Defined in:
- lib/dependencies/apt.rb
Constant Summary
Constants inherited from VersionedDependency
VersionedDependency::VERSION_SEPARATOR
Constants inherited from Dependency
Dependency::DESCRIPTION_TYPE_WIDTH
Instance Attribute Summary
Attributes inherited from Dependency
Instance Method Summary collapse
Methods inherited from VersionedDependency
#dep_name, #dep_version, #versioned?
Methods inherited from Dependency
#always_act?, #exit_code, #failure?, #initialize, #output, #success?, #type
Constructor Details
This class inherits a constructor from Dependency
Instance Method Details
#meet ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/dependencies/apt.rb', line 13 def meet if versioned? execute("#{sudo_string}apt-get install -y #{dep_name}=#{dep_version}") else execute("#{sudo_string}apt-get install -y #{name}") end end |
#met? ⇒ Boolean
5 6 7 8 9 10 11 |
# File 'lib/dependencies/apt.rb', line 5 def met? if versioned? apt_cache_policy.installed_version == dep_version else apt_cache_policy.installed? end end |
#should_meet? ⇒ Boolean
26 27 28 |
# File 'lib/dependencies/apt.rb', line 26 def should_meet? `uname`.chomp == "Linux" && system("which apt-get", out: File::NULL, err: File::NULL) end |
#unmeet ⇒ Object
21 22 23 24 |
# File 'lib/dependencies/apt.rb', line 21 def unmeet # do nothing; we don't want to uninstall packages and reinstall them every time true end |