Flowdock
method

show_files

Importance_0
v2_2_9 - Show latest stable - 0 notes - Class: ContentsCommand
show_files(files) public

No documentation

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

Hide source
# File lib/rubygems/commands/contents_command.rb, line 155
  def show_files files
    files.sort.each do |prefix, basename|
      absolute_path = File.join(prefix, basename)
      next if File.directory? absolute_path

      if options[:prefix] then
        say absolute_path
      else
        say basename
      end
    end
  end
Register or log in to add new notes.