Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
<a href="http://rubydoc.info/github/wycats/rake-pipeline-web-filters/master/file/README.yard">rubydoc.info</a>