27 lines
508 B
Ruby
27 lines
508 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ServiceList
|
|
def initialize(batch, service_hash, extra_hash = {})
|
|
@batch = batch
|
|
@service_hash = service_hash
|
|
@extra_hash = extra_hash
|
|
end
|
|
|
|
def to_array
|
|
[Service, columns, values]
|
|
end
|
|
|
|
private
|
|
|
|
attr_reader :batch, :service_hash, :extra_hash
|
|
|
|
def columns
|
|
(service_hash.keys << 'project_id') + extra_hash.keys
|
|
end
|
|
|
|
def values
|
|
batch.map do |project_id|
|
|
(service_hash.values << project_id) + extra_hash.values
|
|
end
|
|
end
|
|
end
|