How do you get LiveReload to work with Octopress using Guard

I am using this guide to add liveReload to Octopress.

http://www.erikzaadi.com/2012/09/16/using-live-reload-with-octopress/

Once I get to 'rake generate && rake watch', The command line spits out
I am missing a specific gem; i.e.'rake-0.9.6', which is strange because
I thought by installing the bundle took care of that.

I suspect that bundle is being saved elsewhere; but shouldn't that
bundle be saved in the directory of my choosing (i.e. Sites/myproject?)

···

--
Posted via http://www.ruby-forum.com/.

Use "bundle exec" to run the command in the context of the bundle generated by your Gemfile. This ensures it uses the correct versions:

   bundle exec rake generate

Docs: Gem Bundler – Manage your Ruby gems

-Justin

···

On 06/17/2013 04:12 PM, antonio o. wrote:

I am using this guide to add liveReload to Octopress.

Using Live Reload with Octopress - Erik Zaadi

Once I get to 'rake generate && rake watch', The command line spits out
I am missing a specific gem; i.e.'rake-0.9.6', which is strange because
I thought by installing the bundle took care of that.

I suspect that bundle is being saved elsewhere; but shouldn't that
bundle be saved in the directory of my choosing (i.e. Sites/myproject?)