Method: EasyType::Group#contents_for

Defined in:
lib/easy_type/group.rb

#contents_for(group_name) ⇒ Array

Get all parameters and properties from the specified group name. If the group doesn’t exist raise an exception

Parameters:

  • group_name (String)

    this is the name of the group.

Returns:

  • (Array)

    an Array of parameters and properties

Raises:

  • (Puppet::Error)

    When the group doesn’t exist



26
27
28
29
30
# File 'lib/easy_type/group.rb', line 26

def contents_for(group_name)
  @content.fetch(group_name) do
    fail "easy_type: No group defined with name #{group_name}"
  end
end