Method: Shards::Workflow::Base#format_options
- Defined in:
- lib/shards/workflow/base.rb
#format_options(title, array) ⇒ Object
132 133 134 135 136 137 138 |
# File 'lib/shards/workflow/base.rb', line 132 def title, array puts title puts array.each_index.map do |k| puts "\t#{k}) #{array[k]}" end end |