class Bullet::Registry::Association
def merge(base, associations)
def merge(base, associations) @registry.merge!(base => associations) end
def similarly_associated(base, associations)
def similarly_associated(base, associations) @registry.select { |key, value| key.include?(base) && value == associations } .collect(&:first).flatten end