Sha256: abe0722b2cc5622938975272ace7bc8b61d9783b08343bba800e3bfb69da0f45
Contents?: true
Size: 1.17 KB
Versions: 13
Compression:
Stored size: 1.17 KB
Contents
# frozen_string_literal: true # encoding: utf-8 # A class which sends values to the database as Strings but returns them to the user as Symbols. module Mongoid class StringifiedSymbol class << self # Convert the object from its mongo friendly ruby type to this type. # # @example Demongoize the object. # Symbol.demongoize(object) # # @param [ Object ] object The object to demongoize. # # @return [ Symbol ] The object. # # @api private def demongoize(object) if object.nil? object else object.to_s.to_sym end end # Turn the object from the ruby type we deal with to a Mongo friendly # type. # # @example Mongoize the object. # Symbol.mongoize("123.11") # # @param [ Object ] object The object to mongoize. # # @return [ Symbol ] The object mongoized. # # @api private def mongoize(object) if object.nil? object else object.to_s end end # @api private def evolve(object) mongoize(object) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems