Flowdock
method

generated_relation_methods

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: DelegateCache
generated_relation_methods() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/delegation.rb, line 41
        def generated_relation_methods
          @generated_relation_methods ||= Module.new.tap do |mod|
            mod_name = "GeneratedRelationMethods"
            const_set mod_name, mod
            private_constant mod_name
          end
        end
Register or log in to add new notes.