Class: ActiveRecord::HasManyThroughAssociationNotFoundError::Correction
Relationships & Source Files | |
Inherits: | Object |
Defined in: | activerecord/lib/active_record/associations.rb |
Class Method Summary
- .new(error) ⇒ Correction constructor
Instance Method Summary
Constructor Details
.new(error) ⇒ Correction
# File 'activerecord/lib/active_record/associations.rb', line 93
def initialize(error) @error = error end
Instance Method Details
#corrections
[ GitHub ]# File 'activerecord/lib/active_record/associations.rb', line 97
def corrections if @error.reflection && @error.owner_class maybe_these = @error.owner_class.reflections.keys maybe_these -= [@error.reflection.name.to_s] # remove failing reflection maybe_these.sort_by { |n| DidYouMean::Jaro.distance(@error.reflection. [:through].to_s, n) }.reverse.first(4) else [] end end