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