Flowdock
method

add_parser_summary

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: Command
add_parser_summary() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/command.rb, line 448
  def add_parser_summary # :nodoc:
    return unless @summary

    @parser.separator nil
    @parser.separator "  Summary:"
    wrap(@summary, 80 - 4).split("\n").each do |line|
      @parser.separator "    #{line.strip}"
    end
  end
Register or log in to add new notes.