README.md in jupyter_on_rails-0.5.3 vs README.md in jupyter_on_rails-0.5.4

- old
+ new

@@ -65,10 +65,11 @@ ``` ### Daru::DataFrame#write_model For each row, call `to_h` and pass it to `model.new`. -And then, imports them using `model.import`. +And then, imports them using `model.insert_all` on Rails >= 6, or `model.import` (requires adding +`activerecord-import` to your `Gemfile`). ```ruby df.write_model(User) ```