Method: EasyType::Group#add

Defined in:
lib/easy_type/group.rb

#add(group_name, parameter_or_property) ⇒ Group

Add a parameter or a propert to a group. The may or may not exists. If it doesn’t exist, it will be created. The name of a group is just for identification purpose’s. It doesn’t have any other meaning.

Parameters:

  • group_name (String)

    this is the name of the group.

  • parameter_or_property (Puppet::Parameter)

    this is the specified parameter.

Returns:

Raises:

  • (Puppet::Error)

    When the group doesn’t exist



43
44
45
46
47
# File 'lib/easy_type/group.rb', line 43

def add(group_name, parameter_or_property)
  group = ensure_group(group_name)
  group << parameter_or_property
  group
end