Exception: ActiveRecord::AssociationNotFoundError
- Inherits:
-
ConfigurationError
- Object
- StandardError
- ActiveRecordError
- ConfigurationError
- ActiveRecord::AssociationNotFoundError
- Includes:
- DidYouMean::Correctable
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/associations.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#association_name ⇒ Object
readonly
Returns the value of attribute association_name.
-
#record ⇒ Object
readonly
Returns the value of attribute record.
Instance Method Summary collapse
- #corrections ⇒ Object
-
#initialize(record = nil, association_name = nil) ⇒ AssociationNotFoundError
constructor
A new instance of AssociationNotFoundError.
Constructor Details
#initialize(record = nil, association_name = nil) ⇒ AssociationNotFoundError
Returns a new instance of AssociationNotFoundError.
7 8 9 10 11 12 13 14 15 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/associations.rb', line 7 def initialize(record = nil, association_name = nil) @record = record @association_name = association_name if record && association_name super("Association named '#{association_name}' was not found on #{record.class.name}; perhaps you misspelled it?") else super("Association was not found.") end end |
Instance Attribute Details
#association_name ⇒ Object (readonly)
Returns the value of attribute association_name.
5 6 7 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/associations.rb', line 5 def association_name @association_name end |
#record ⇒ Object (readonly)
Returns the value of attribute record.
5 6 7 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/associations.rb', line 5 def record @record end |
Instance Method Details
#corrections ⇒ Object
20 21 22 23 24 25 26 27 28 29 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/associations.rb', line 20 def corrections if record && association_name @corrections ||= begin maybe_these = record.class.reflections.keys DidYouMean::SpellChecker.new(dictionary: maybe_these).correct(association_name) end else [] end end |