Sha256: d578ff3e1f0fb2af4aa2f6fbfb2186ca0c9e4ff1bd7855c07c64f21a6458b199
Contents?: true
Size: 650 Bytes
Versions: 4
Compression:
Stored size: 650 Bytes
Contents
# frozen_string_literal: true module Sail # ConstantCollection # # This module includes a variety of # constants that are used multiple times # in the code to avoid unnecessary allocations. module ConstantCollection TRUE = "true" FALSE = "false" STRING_BOOLEANS = %w[true false].freeze BOOLEAN = "boolean" ON = "on" BOOLEANS = [true, false].freeze CONFIG_FILE_PATH = "./config/sail.yml" STALE = "stale" RECENT = "recent" FIELDS_FOR_SORT = %w[name updated_at cast_type group].freeze SETTINGS_PER_PAGE = 8 MINIMAL_SETTINGS_PER_PAGE = 24 INPUT_DATE_FORMAT = "%Y-%m-%dT%H:%m:%S" end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
sail-3.2.4 | lib/sail/constant_collection.rb |
sail-3.2.3 | lib/sail/constant_collection.rb |
sail-3.2.2 | lib/sail/constant_collection.rb |
sail-3.2.1 | lib/sail/constant_collection.rb |