Class: Inspec::Resources::YumRepoLegacy
Overview
for compatability with serverspec this is deprecated syntax and will be removed in future versions
Instance Method Summary collapse
- #deprecated ⇒ Object
- #enabled? ⇒ Boolean
- #exists? ⇒ Boolean
-
#initialize(name) ⇒ YumRepoLegacy
constructor
A new instance of YumRepoLegacy.
Methods inherited from Yum
#method_missing, #repo, #repos, #repositories, #to_s
Constructor Details
#initialize(name) ⇒ YumRepoLegacy
Returns a new instance of YumRepoLegacy.
148 149 150 151 |
# File 'lib/resources/yum.rb', line 148 def initialize(name) super() @repository = repo(name) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Inspec::Resources::Yum
Instance Method Details
#deprecated ⇒ Object
163 164 165 |
# File 'lib/resources/yum.rb', line 163 def deprecated warn '[DEPRECATION] `yumrepo(reponame)` is deprecated. Please use `yum.repo(reponame)` instead.' end |
#enabled? ⇒ Boolean
158 159 160 161 |
# File 'lib/resources/yum.rb', line 158 def enabled? deprecated @repository.enabled? end |
#exists? ⇒ Boolean
153 154 155 156 |
# File 'lib/resources/yum.rb', line 153 def exists? deprecated @repository.exist? end |