class Reponaut::Application::List

Public Class Methods

new(prog) click to toggle source
# File lib/reponaut/commands/list.rb, line 4
def initialize(prog)
  prog.command(:list) do |c|
    c.alias :ls
    c.syntax 'list [options] <username> [language]'
    c.description "List a user's repos"
    c.option 'ignore_forks', '-f', 'Ignore forks'
    c.option 'show_description', '-d', 'Show repo description'
    c.option 'show_language', '-l', 'Show repo language'

    c.action do |args, options|
      process(options, args)
    end
  end
end

Public Instance Methods

process(options, args) click to toggle source
Calls superclass method Reponaut::Application::Command#process
# File lib/reponaut/commands/list.rb, line 19
def process(options, args)
  super

  language = args[1]

  quit 6, 'Only one of -l and -d may be specified' if options['show_description'] && options['show_language']

  filtered_repos = repos
  filtered_repos = filtered_repos.select { |r| r.language.downcase == language.downcase } if language
  if filtered_repos.empty?
    msg = "#{username} has no repositories"
    msg += " written in #{language}" if language
    quit 4, msg
  end

  formatter = formatter_class(options).new
  filtered_repos.sort.each do |r|
    puts formatter.format(r)
  end
end

Private Instance Methods

formatter_class(options) click to toggle source
# File lib/reponaut/commands/list.rb, line 42
def formatter_class(options)
  if options['show_description']
    LongPresenter
  elsif options['show_language']
    LanguagePresenter
  else
    SimplePresenter
  end
end