Sha256: e5f880edf04597c9f65f8915ac403f2659edf9ff5ded97c5365b7dac260a0bb1
Contents?: true
Size: 362 Bytes
Versions: 133
Compression:
Stored size: 362 Bytes
Contents
# frozen_string_literal: true # :nocov: module Primer module Static # :nodoc: module GenerateAuditedAt class << self def call Primer::Component.descendants.sort_by(&:name).each_with_object({}) do |component, mem| mem[component.to_s] = component.audited_at.to_s end end end end end end
Version data entries
133 entries across 133 versions & 2 rubygems