Class: Geet::Services::ListLabels

Inherits:
Object
  • Object
show all
Defined in:
lib/geet/services/list_labels.rb

Instance Method Summary collapse

Constructor Details

#initialize(repository, out: $stdout) ⇒ ListLabels

Returns a new instance of ListLabels.



6
7
8
9
# File 'lib/geet/services/list_labels.rb', line 6

def initialize(repository, out: $stdout)
  @repository = repository
  @out = out
end

Instance Method Details

#executeObject



11
12
13
14
15
16
17
# File 'lib/geet/services/list_labels.rb', line 11

def execute
  labels = @repository.labels

  labels.each do |label|
    @out.puts "- #{label.name} (##{label.color})"
  end
end