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.
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 |