method

gem_contents

gem_contents(name)
public

No documentation available.

# File lib/rubygems/commands/contents_command.rb, line 118
  def gem_contents name
    spec = spec_for name

    return false unless spec

    files = files_in spec

    show_files files

    true
  end