Merge pull request #1 from develup/master

Updated Readme file, noting Underscore dependency.
This commit is contained in:
Elf M. Sternberg 2013-03-05 14:57:04 -08:00
commit 664328e95c
1 changed files with 7 additions and 3 deletions

View File

@ -29,7 +29,11 @@ grunt.loadNpmTasks('grunt-ruby-haml');
## Documentation ## Documentation
You'll need to install `grunt-ruby-haml`: Make sure you have underscore installed:
npm install underscore
Then you'll need to install `grunt-ruby-haml`:
npm install grunt-ruby-haml npm install grunt-ruby-haml
@ -45,9 +49,9 @@ Then add some configuration for the plugin like so:
app: { app: {
files: { files: {
"public/index.html": "src/index.haml" "public/index.html": "src/index.haml"
} },
options: { options: {
templatize: False templatize: false
} }
} }
}, },