wycats / rake-pipeline-web-filters

MIT License
116 stars 36 forks source link

Implementing the RoyFilter #36

Open ethul opened 12 years ago

ethul commented 12 years ago

Hi All,

The RoyFilter compiles files written in the Roy language (http://roy.brianmckenna.org) to JavaScript as part of the asset pipeline. This filter depends on the roy-lang gem. It has been added a dev dependency.

An example using the filter in an Assetfile:

  output "public"

  input "assets" do
    match "*.roy" do
      roy
    end
  end

Best, -Eric