Class: EasyType::Helpers::InstancesResults

Inherits:
Hash
  • Object
show all
Defined in:
lib/easy_type/helpers.rb

Overview

TODO: Add documentation

Instance Method Summary collapse

Instance Method Details

#column_data(column_name) ⇒ Object

rubocop:disable LineLength

Hash

Parameters:

  • column_name (Symbol)

    the name of the column to extract from the

Returns:

  • content of the specified key in the Hash

Raises:

  • (Puppet::Error)

    when the column name is not used in the Hash



32
33
34
35
36
# File 'lib/easy_type/helpers.rb', line 32

def column_data(column_name)
  fetch(column_name) do
    fail "Column #{column_name} not found in results. Results contain #{keys.join(',')}"
  end
end