# File lib/clamp/help.rb, line 79 def add_list(heading, items) puts "\n#{heading}:" items.each do |item| label, description = item.help description.each_line do |line| puts DETAIL_FORMAT % [label, line] label = '' end end end