Method: Chef::Cookbook::Metadata#ohai_version
- Defined in:
- lib/chef/cookbook/metadata.rb
#ohai_version(*version_args) ⇒ Array<Gem::Dependency>
Metadata DSL to set a valid ohai_version. May be declared multiple times with the result being 'OR'd such that if any statements match, the version is considered supported. Uses Gem::Requirement for its implementation.
334 335 336 337 |
# File 'lib/chef/cookbook/metadata.rb', line 334 def ohai_version(*version_args) @ohai_versions << Gem::Dependency.new("ohai", *version_args) unless version_args.empty? @ohai_versions end |