Oops - the change to the frontmatter regex broke it somehow. This reverts that change (but also reigns in the file_deleted hook).

This commit is contained in:
Ben Hollis 2011-11-30 22:06:00 -08:00
parent 17e3735d44
commit 1b330e7a27

View file

@ -17,7 +17,7 @@ module Middleman::CoreExtensions::FrontMatter
frontmatter.touch_file(file)
end
file_deleted do |file|
file_deleted FrontMatter.matcher do |file|
frontmatter.remove_file(file)
end
@ -52,7 +52,7 @@ module Middleman::CoreExtensions::FrontMatter
class FrontMatter
class << self
def matcher
%r{^source/.*\.html}
%r{source/.*\.html}
end
end