I want to, when given a particular model, return all the related models it is associated with. For example:
class Dog < ActiveRecord::Base has_many :bo
Dog.reflect_on_all_associations
http://api.rubyonrails.org/classes/ActiveRecord/Reflection/ClassMethods.html#M001405
You wouldn't do this on an instance but on the model itself.