Class: Remover::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/remover/cli.rb

Instance Method Summary collapse

Instance Method Details

#listObject



11
12
13
14
15
16
17
# File 'lib/remover/cli.rb', line 11

def list
  Remover.configuration.load_from_options!(options)

  Remover::List.new(github).unused_teams.each do |team|
    puts team.name
  end
end