Method: Arrow::Dispatcher#untable
- Defined in:
- lib/arrow/dispatcher.rb
#untable(table) ⇒ Object
358 359 360 361 362 363 364 365 |
# File 'lib/arrow/dispatcher.rb', line 358 def untable( table ) lines = [] table.each do |k,v| lines << "%s: %s" % [ k, v ] end return lines.join( "; " ) end |