mongodb/mongoid

View on GitHub
lib/mongoid/extensions/true_class.rb

Summary

Maintainability
A
20 mins
Test Coverage
# frozen_string_literal: true
# rubocop:todo all

module Mongoid
  module Extensions
    # Adds type-casting behavior to TrueClass
    module TrueClass
      # Get the value of the object as a mongo friendly sort value.
      #
      # @example Get the object as sort criteria.
      #   object.__sortable__
      #
      # @return [ Integer ] 1.
      # @deprecated
      def __sortable__
        1
      end
      Mongoid.deprecate(self, :__sortable__)

      # Is the passed value a boolean?
      #
      # @example Is the value a boolean type?
      #   true.is_a?(Boolean)
      #
      # @param [ Class ] other The class to check.
      #
      # @return [ true | false ] If the other is a boolean.
      def is_a?(other)
        if other == Mongoid::Boolean || other.class == Mongoid::Boolean
          return true
        end
        super(other)
      end
    end
  end
end

TrueClass.include Mongoid::Extensions::TrueClass