# File lib/rubygems/commands/dependency_command.rb, line 7
      def initialize
        super('dependency',
          'Show the dependencies of an installed gem',
          {:version=>"> 0"})
        add_version_option('dependency')
        add_option('-r', '--[no-]reverse-dependencies',
          'Include reverse dependencies in the output'
          ) do |value, options|
          options[:reverse_dependencies] = value
        end
        add_option('-p', '--pipe', "Pipe Format (name --version ver)") do |value, options|
          options[:pipe_format] = value
        end
      end