Methods
Instance Public methods
# File activerecord/lib/active_record/dynamic_matchers.rb, line 3 3: def respond_to?(method_id, include_private = false) 4: if match = DynamicFinderMatch.match(method_id) 5: return true if all_attributes_exists?(match.attribute_names) 6: elsif match = DynamicScopeMatch.match(method_id) 7: return true if all_attributes_exists?(match.attribute_names) 8: end 9: 10: super 11: end