Class: Ronin::Repos::CLI::Commands::List Private

Inherits:
Ronin::Repos::CLI::Command show all
Defined in:
lib/ronin/repos/cli/commands/list.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Lists all repositories in the cache directory.

Usage

ronin-repos list [options] [REPO]

Options

-C, --cache-dir DIR              Overrides the default cache directory
-h, --help                       Print help information

Arguments

[REPO]                           Optional repository name to list

Instance Attribute Summary

Attributes inherited from Ronin::Repos::CLI::Command

#cache_dir

Instance Method Summary collapse

Methods inherited from Ronin::Repos::CLI::Command

#initialize

Constructor Details

This class inherits a constructor from Ronin::Repos::CLI::Command

Instance Method Details

#run(name = nil) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Runs the ronin-repos list command.

Parameters:

  • name (String, nil) (defaults to: nil)

    The optional repo name to list.



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/ronin/repos/cli/commands/list.rb', line 59

def run(name=nil)
  if name
    begin
      repo = cache_dir[name]

      puts "  #{repo}"
    rescue RepositoryNotFound => error
      print_error(error.message)
      exit(-1)
    end
  else
    cache_dir.each do |repo|
      puts "  #{repo}"
    end
  end
end