Method: CloudFormationDSL::Helpers#join
- Defined in:
- lib/cloudformation-dsl/helpers.rb
#join(delim, *list) ⇒ Object
38 39 40 41 42 43 44 |
# File 'lib/cloudformation-dsl/helpers.rb', line 38 def join(delim, *list) case list.length when 0 then '' when 1 then list[0] else join_list(delim,list) end end |