Sha256: b0cbd843b1f14cf6c027bdbb6400e7eaec4ab8884f2b0d7a2adfee672ea4da64
Contents?: true
Size: 381 Bytes
Versions: 95
Compression:
Stored size: 381 Bytes
Contents
# frozen_string_literal: true module Blacklight # Returned if no config is defined for the field in the Blacklight::Configuration class Configuration::NullField < Blacklight::Configuration::Field def initialize(field_or_hash = nil) case field_or_hash when String, Symbol super(field: field_or_hash) else super end end end end
Version data entries
95 entries across 94 versions & 2 rubygems