Just do IT

思うは招く

Railsチュートリアル10章で出た警告update_attributes is deprecated and will be removed from Rails 6.1

問題

第10章 ユーザーの更新・表示・削除 - Railsチュートリアルのリスト10.12で、テストを実行すると以下のような警告が出る。

DEPRECATION WARNING: update_attributes is deprecated and will be removed from Rails 6.1 (please, use update instead)

update_attributesはRails6.1で使われなくなるから、代わりにupdate使ってね」と言っている。

解決

警告のとおりに変更する。

app/controllers/users_controller.rb

  def update
    @user = User.find(params[:id])
    if @user.update(user_params) #変更箇所
      flash[:success] = "Profile updated"
      redirect_to @user
    else
      render :edit
    end
  end

これで警告は出なくなった。