Use rule Ace::Static(output_path), file if you need to specify output_path.
Example: rule Ace::Static("output/index.html"), "index.html.haml"
This commit is contained in:
parent
dc07c46577
commit
92d1eb1553
1 changed files with 9 additions and 0 deletions
|
@ -3,7 +3,16 @@
|
||||||
require "ace/filters/template"
|
require "ace/filters/template"
|
||||||
|
|
||||||
# rule Ace::Static, "about.html.haml"
|
# rule Ace::Static, "about.html.haml"
|
||||||
|
# rule Ace::Static("output/index.html"), "index.html.haml"
|
||||||
module Ace
|
module Ace
|
||||||
|
def self.Static(output_path)
|
||||||
|
Class.new(Static) do
|
||||||
|
define_method(:output_path) do
|
||||||
|
output_path
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
class Static < Item
|
class Static < Item
|
||||||
before Ace::TemplateFilter
|
before Ace::TemplateFilter
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue