包含 100 个文件的 Rake 文件任务
我现在刚刚学习 Rake 中的文件任务。我有 100 个 javascript 源文件,它们连接到 10 个左右的文件。我发现这种映射可以通过文件任务智能地完成。看来您需要指定每个文件。
有没有一种有效的方法来编写一个文件任务,递归地查找所有这些 javascript 文件并将它们与右侧的串联文件进行比较?连接部分是一个棘手的步骤,目前正在由自定义构建工具完成,直到我可以在 ruby 中实现它。
例如,
/a.js
/c.js -----------> base.js
/geo/b.js
/geo/c.js -----------> geo.js
/mod/d.js
/mod/e.js -----------> mod.js
I'm just now learning about file tasks in Rake. I have 100s of javascript source files, that get concatenated to 10 or so files. I see this kind of mapping can be done intelligently with file tasks. It appears you need to specify every file.
Is there an efficient way to write a file task that recursively finds all of these javascript files and compare them to the concatenated files on the right side? The concatenation part is a tricky step and is being done by a custom build tool at the moment until I can get that in ruby.
For example,
/a.js
/c.js -----------> base.js
/geo/b.js
/geo/c.js -----------> geo.js
/mod/d.js
/mod/e.js -----------> mod.js
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
依此类推,显然,您必须自己实现 concatenate 方法(在我的示例中,第一个参数是文件列表,第二个参数是目标文件,例如 geo.js< /代码>)。如果所有创建的文件都以目录命名,您可以执行以下操作:
如果目录可以以某种方式进行通配,您可以通过用
Dir[...]
替换目录名称列表来使其更加动态也。and so on, you will have to implement the
concatenate
method yourself, obviously (in my example the first argument is the list of files and the second is the destination file, e.g.geo.js
). If all created files are named after directories you can do something like this:If the directories can be globbed somehow you could make it even more dynamic by replacing the list of directory names with
Dir[...]
too.如何调用这个 rake 文件任务?
How to invoke this rake file task?