diff options
author | Lucas Caton <lucascaton@gmail.com> | 2018-10-04 13:10:54 +1000 |
---|---|---|
committer | Lucas Caton <lucascaton@gmail.com> | 2018-10-04 13:10:54 +1000 |
commit | 6ae2ab4f447b286b00eaab0df9072aed9e3246e8 (patch) | |
tree | caa6eb3a815b4bfb0f6063ee67d727bd8f46b1f5 | |
parent | 1b6ab13960c8750be0b95961b78250128ddc3284 (diff) | |
download | rails-6ae2ab4f447b286b00eaab0df9072aed9e3246e8.tar.gz rails-6ae2ab4f447b286b00eaab0df9072aed9e3246e8.tar.bz2 rails-6ae2ab4f447b286b00eaab0df9072aed9e3246e8.zip |
Recommend use of rails over bin/rails
In order to make the recommendations consistent with Rails: https://github.com/rails/rails/commit/40b209db53
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -22,12 +22,12 @@ Assumes a Rails 6+ application with Active Storage and Webpacker installed. gem "actiontext", github: "rails/actiontext", require: "action_text" gem "image_processing", "~> 1.2" # for Active Storage variants ``` - -1. Install assets, npm dependency, and migrations + +1. Install assets, npm dependency, and migrations: ``` - ./bin/rails action_text:install - ./bin/rails db:migrate + rails action_text:install + rails db:migrate ``` ## Examples |