From 2fa0234f3bb0835eaf2317d7506363d2cfb1a78b Mon Sep 17 00:00:00 2001 From: Brandon Alexander Date: Fri, 9 Sep 2011 11:00:19 -0500 Subject: [PATCH] Adds note about needing rspec to run rake commands. I was getting the following error when running `rake commonjs`: ``` rake aborted! no such file to load -- rspec/core/rake_task (See full trace by running task with --trace) ``` This was with a default OS X Lion install. The issue was simply that rspec was not installed, however, it may not be obvious at first. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b013dd6..7ed5d42 100644 --- a/README.md +++ b/README.md @@ -289,7 +289,8 @@ Or just install it as a RubyGem: ## Plugins for jQuery, Dojo, Yui, CommonJS This repository lets you build modules for [jQuery][], [Dojo][], [Yui][] and -[CommonJS][] / [Node.js][] with the help of `rake`: +[CommonJS][] / [Node.js][] with the help of `rake`. You may need to install +rspec first by running `gem install rspec`. Run `rake jquery` to get a jQuery compatible plugin file in the `mustache-jquery/` directory.