From a33693ffaeb60fc8bcde6c805c9659ff4b7e2bd6 Mon Sep 17 00:00:00 2001 From: Chris Boertien Date: Tue, 22 Nov 2011 20:10:17 -0700 Subject: [PATCH] Update the README, acts_as_commentable will load through bundler and some touchups to the migration tasks Signed-off-by: Chris Boertien --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) 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