class MotherBrain::Group::CleanRoom

@api private

Public Instance Methods

chef_attribute(attr_key, attr_value) click to toggle source

@param [#to_s] attr_key @param [Object] attr_value

# File lib/mb/group.rb, line 138
def chef_attribute(attr_key, attr_value)
  real_model.add_chef_attribute(attr_key, attr_value)
end
recipe(value) click to toggle source

@param [#to_s] value

@return [Set<String>]

# File lib/mb/group.rb, line 125
def recipe(value)
  real_model.add_recipe(value.to_s)
end
role(value) click to toggle source

@param [#to_s] value

@return [Set<String>]

# File lib/mb/group.rb, line 132
def role(value)
  real_model.add_role(value.to_s)
end