使用Middleman App构建时忽略文件夹

时间:2014-02-18 09:30:44

标签: ruby middleman

我想在构建时忽略samples/文件夹。我用过这个

configure :build do
  activate :asset_hash, :ignore => [/^samples\//]
end

它不起作用,并且在构建过程中仍然包含该文件夹。有人可以建议吗?

1 个答案:

答案 0 :(得分:7)

将以下代码添加到config.rb文件中:

ignore 'samples/*'

#ignore也接受正则表达式。请参阅the specs