class ActiveRecord::AssociationNotFoundError::Correction
Public Class Methods
new(error)
click to toggle source
# File lib/active_record/associations.rb, line 20 def initialize(error) @error = error end
Public Instance Methods
corrections()
click to toggle source
# File lib/active_record/associations.rb, line 24 def corrections if @error.association_name maybe_these = @error.record.class.reflections.keys maybe_these.sort_by { |n| DidYouMean::Jaro.distance(@error.association_name.to_s, n) }.reverse.first(4) else [] end end