我正在使用guard-concat 插件来连接我的车把模板文件。
我可以使用正则表达式来连接一个文件夹中的所有文件,而不是输入所有文件的名称吗?
所以不要这样做:
guard :concat, type: "php", files: %w(a b b/c b/d), input_dir: "app/views/handlebars", output: "app/views/handlebars/all"
我可以这样做:
guard :concat, type: "php", files: %r{.+}, input_dir: "app/views/handlebars", output: "app/views/handlebars/all"
当我这样做时,我收到以下错误:
ERROR - Invalid Guardfile, original error is: > [#] undefined method `join' for /.+/:Regexp