From eb9b77f4903c7f2c0f59a65fee52985fff3d1774 Mon Sep 17 00:00:00 2001 From: "Dotan J. Nahum" Date: Sat, 29 Dec 2012 18:27:56 +0200 Subject: [PATCH] Updating README and adding explanation about dependencies --- README.markdown | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index edaf058..076e6ef 100644 --- a/README.markdown +++ b/README.markdown @@ -31,8 +31,8 @@ require 'rake-pipeline-web-filters' output "site" input "javascripts" do - match "**/*.coffe" do - coffeescript + match "**/*.coffee" do + coffee_script end match "**/*.js" do @@ -54,5 +54,18 @@ input "stylesheets" do end ``` +And the matching dependencies should be in your `Gemfile` : + +```ruby +group :development do + gem 'coffee-script' + gem 'uglifier' + gem 'yui-compressor' + gem 'sass' + gem 'rake-pipeline' + gem 'rake-pipeline-web-filters' +end +``` + API documentation is hosted at rubydoc.info