Class: Ci::TagsFinder

Inherits:
Object
  • Object
show all
Defined in:
app/finders/ci/tags_finder.rb

Instance Method Summary collapse

Constructor Details

#initialize(params:) ⇒ TagsFinder

Returns a new instance of TagsFinder.



5
6
7
# File 'app/finders/ci/tags_finder.rb', line 5

def initialize(params:)
  @params = params
end

Instance Method Details

#executeObject



9
10
11
12
# File 'app/finders/ci/tags_finder.rb', line 9

def execute
  tags = all_tags
  filter_by_name(tags)
end