我有一个硬编码的文件任务
file 'feed.json' => 'lib/feed.rb'
如何使用匹配模式
file '*.json' => 'lib/$1.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
对Wacht来说 视频 可以帮助。