Class: Geet::Services::ListPrs
- Inherits:
-
Object
- Object
- Geet::Services::ListPrs
- Defined in:
- lib/geet/services/list_prs.rb
Instance Method Summary collapse
- #execute ⇒ Object
-
#initialize(repository, out: $stdout) ⇒ ListPrs
constructor
A new instance of ListPrs.
Constructor Details
#initialize(repository, out: $stdout) ⇒ ListPrs
Returns a new instance of ListPrs.
6 7 8 9 |
# File 'lib/geet/services/list_prs.rb', line 6 def initialize(repository, out: $stdout) @repository = repository @out = out end |
Instance Method Details
#execute ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/geet/services/list_prs.rb', line 11 def execute prs = @repository.prs prs.each do |pr| @out.puts "#{pr.number}. #{pr.title} (#{pr.link})" end end |