标签: ruby middleman
我想在构建时忽略samples/文件夹。我用过这个
samples/
configure :build do activate :asset_hash, :ignore => [/^samples\//] end
它不起作用,并且在构建过程中仍然包含该文件夹。有人可以建议吗?
答案 0 :(得分:7)
将以下代码添加到config.rb文件中:
ignore 'samples/*'
#ignore也接受正则表达式。请参阅the specs。
#ignore