Method: Cfruby::Cfp_MapOptions#expand_synonyms
- Defined in:
- lib/libcfenjin/cfp_mapoptions.rb
#expand_synonyms(list) ⇒ Object
Clone a list with expanded keywords
230 231 232 233 234 235 236 |
# File 'lib/libcfenjin/cfp_mapoptions.rb', line 230 def list explist = {} list.each do | key, value | explist[synonym(key)] = value end explist end |