更改 Rake 文件任务先决条件中的路径

Change path in Rake file task prerequisites

我有一个硬编码文件任务

file 'feed.json' => 'lib/feed.rb'

如何使用匹配模式

file '*.json' => 'lib/.rb' # Like this (this is pseudocode)

这样可以吗?

source_files = Rake::FileList.new("lib/*.md")
task :default => :json
task :json => source_files.ext(".rb")

rule ".json" => ".rb" do |t|
  # here what you need to be done
end

观看此 video 可能会有所帮助。