Sha256: 5459ec1d2f0744467d12aade283d0ed135d42ea292cd0f1b1a6f80bf0b45a04e
Contents?: true
Size: 724 Bytes
Versions: 1
Compression:
Stored size: 724 Bytes
Contents
# frozen_string_literal: true module MIME class Types module Data VERSION = "3.2023.0218.1" # The path that will be used for loading the MIME::Types data. The # default location is __FILE__/../../../../data, which is where the data # lives in the gem installation of the mime-types-data library. # # The MIME::Types::Loader will load all JSON or columnar files contained # in this path. # # System maintainer note: this is the constant to change when packaging # mime-types for your system. It is recommended that the path be # something like /usr/share/ruby/mime-types/. PATH = File.expand_path("../../../../data", __FILE__) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mime-types-data-3.2023.0218.1 | lib/mime/types/data.rb |