Rails ActiveRecord オブジェクトの比較

==(comparison_object)

Returns true if comparison_object is the same exact object, or comparison_object is of the > same type and self has an ID and it is equal to comparison_object.id.

ref. ActiveRecord::Core | RailsDoc(β)

See also. 【Rails】ActiveRecordでオブジェクトどうしを==で比較したとき、何が比較されるか - Qiita

バージョン指定して rails new

rails new のときに使う rails のバージョンを指定したいとき。

$ rails _6.0.0_ new SampleApp

skip-webpack-install

rails new 時に webpack install を skip するオプション。

rails new hoge --skip-webpack-install

ref. Rails 6 で Webpacker をやめた結果・・・ - Qiita