class ActiveRecord::Associations::Builder::CollectionAssociation

def show_deprecation_warnings

def show_deprecation_warnings
  [:finder_sql, :counter_sql].each do |name|
    if options.include? name
      ActiveSupport::Deprecation.warn("The :#{name} association option is deprecated. Please find an alternative (such as using scopes).")
    end
  end
end