From 80ca31f9ebbf0d2d83681df5fdb586550521a937 Mon Sep 17 00:00:00 2001 From: Brian Ryckbost Date: Fri, 27 Jan 2012 15:47:17 -0500 Subject: [PATCH] Update README --- README.textile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.textile b/README.textile index 584adc548..386278b46 100644 --- a/README.textile +++ b/README.textile @@ -38,7 +38,7 @@ The Active Record backend requires a jobs table. You can create that table by ru
 $ rails generate delayed_job:active_record
-$ bundle exec rake db:migrate
+$ rake db:migrate
 
h3. Upgrading from 2.x to 3.0.0 on Active Record @@ -48,7 +48,7 @@ Delayed Job 3.0.0 introduces a new column to the delayed_jobs table. If you're upgrading from Delayed Job 2.x, run the upgrade generator to create a migration to add the column.
-$ script/rails generate delayed_job:upgrade
+$ rails generate delayed_job:upgrade
 $ rake db:migrate
 
@@ -142,7 +142,7 @@ h2. Running Jobs @script/delayed_job@ can be used to manage a background process which will start working off jobs. -To do so, add @gem "daemons"@ to your @Gemfile@ and make sure you've run `script/rails generate delayed_job`. +To do so, add @gem "daemons"@ to your @Gemfile@ and make sure you've run `rails generate delayed_job`. You can then do the following: