diff --git a/README.md b/README.md index 9e460ec..4abd2f1 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,6 @@ object (i.e. Order, Shipment, etc) via the admin Configuration tab. This is based on a fork / rename of jderrett/spree-order-comments and is now an officially supported extension. -Requirements: - -* [acts\_as\_commentable](http://github.com/jackdempsey/acts_as_commentable) installed - Notes: * Comments are create-only. You cannot edit or remove them from the Admin UI. @@ -24,7 +20,6 @@ Installation Add the following to your Gemfile gem "spree_comments" - gem "acts_as_commentable" Run: @@ -32,12 +27,16 @@ Run: Copy over migrations via the rake task: - bundle exec rake railties:install:migrations FROM=spree_comments + bundle exec rake spree_comments:install:migrations -Run the migrations: +Run the migrations bundle exec rake db:migrate +Or you can also run them together and save a little loading time + + bundle exec rake spree_comments:install:migrations db:migrate + Start your server: rails s