# File lib/clamp/help.rb, line 70 def add_description(description) if description puts "" puts description.gsub(/^/, " ") end end
# 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
Generated with the Darkfish Rdoc Generator 2.