Sha256: a62f015147315ecb2300e534f73f015dcc7730aff90466c3893ee97320457af0
Contents?: true
Size: 815 Bytes
Versions: 20
Compression:
Stored size: 815 Bytes
Contents
# frozen_string_literal: true class Serega module SeregaValidations module Utils # # Utility to check hash key value is String or Symbol # class CheckOptIsStringOrSymbol # Checks hash key has String or Symbol value # # @param opts [Hash] Some options Hash # @param key [Object] Hash key # # @raise [Serega::SeregaError] error when provided key exists and value is not String or Symbol # # @return [void] def self.call(opts, key) return unless opts.key?(key) value = opts[key] return if value.is_a?(String) || value.is_a?(Symbol) raise SeregaError, "Invalid option #{key.inspect} => #{value.inspect}. Must be a String or a Symbol" end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems