Sha256: c5eb765d4563d281f2bb190b78d9ab16e420084777f9f2132e900f0d10904dbc
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
# frozen_string_literal: true module Mongoid module Errors # This error is raised when trying to create a field that conflicts with # an already defined method. class InvalidField < MongoidError # Create the new error. # # @example Create the error. # InvalidField.new(person, :crazy_method_name) # # @api private # # @param [ Class ] klass The document class. # @param [ Symbol ] field The field name. # @param [ Symbol ] name The method name. def initialize(klass, field, name) super( compose_message( "invalid_field", { name: name, field: field, origin: origin(klass, name), file: location(klass, name)[0], line: location(klass, name)[1] } ) ) end private # Get the queryable of the method. # # @example Get the originating class or module. # error.queryable(Person, :crazy_method_name) # # @param [ Class ] klass The document class. # @param [ Symbol ] name The method name. # # @return [ Class, Module ] The originating class or module. def origin(klass, name) klass.instance_method(name).owner end # Get the location of the method. # # @example Get the location of the method on the filesystem. # error.location(Person, :crazy_method_name) # # @param [ Class ] klass The document class. # @param [ Symbol ] name The method name. # # @return [ Array<String, Integer> ] The location of the method. def location(klass, name) @location ||= (klass.instance_method(name).source_location || [ "Unknown", 0 ]) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongoid-8.0.1 | lib/mongoid/errors/invalid_field.rb |