Sha256: 6667a73604a7c9a218b41267d28210a2ea3ffe9fb6ded66e77ec32021f7c2037
Contents?: true
Size: 1.22 KB
Versions: 6
Compression:
Stored size: 1.22 KB
Contents
# frozen_string_literal: true require "primer/view_components/version" require "primer/view_components/engine" module Primer # :nodoc: module ViewComponents DEFAULT_STATUSES_PATH = File.expand_path("static") DEFAULT_STATUS_FILE_NAME = "statuses.json" # generate_statuses returns a hash mapping component name to # the component's status sorted alphabetically by the component name. def self.generate_statuses statuses = Primer::Component.descendants.each_with_object({}) do |component, mem| mem[component.to_s] = component.status.to_s end statuses.sort_by { |k, _v| k }.to_h end # dump_statuses generates the status hash and then serializes # it as json at the given path def self.dump_statuses(path: DEFAULT_STATUSES_PATH) require "json" statuses = generate_statuses File.open(File.join(path, DEFAULT_STATUS_FILE_NAME), "w") do |f| f.write(JSON.pretty_generate(statuses)) f.write($INPUT_RECORD_SEPARATOR) end end # read_statuses returns a JSON string matching the output of # generate_statuses def self.read_statuses(path: DEFAULT_STATUSES_PATH) File.read(File.join(path, DEFAULT_STATUS_FILE_NAME)) end end end
Version data entries
6 entries across 6 versions & 1 rubygems