diff --git a/lib/ace/static.rb b/lib/ace/static.rb index e48829d..69e674f 100644 --- a/lib/ace/static.rb +++ b/lib/ace/static.rb @@ -3,7 +3,16 @@ require "ace/filters/template" # rule Ace::Static, "about.html.haml" +# rule Ace::Static("output/index.html"), "index.html.haml" module Ace + def self.Static(output_path) + Class.new(Static) do + define_method(:output_path) do + output_path + end + end + end + class Static < Item before Ace::TemplateFilter end