Guard 将 dir 的内容编译为 dirname
我正在使用 Guard 在 Rails 2.3.8 应用程序中编译咖啡脚本。
我以前使用 bistro_car 捆绑包,所以我的脚本组织在 app/scripts/{bundle_name}/{bundle_files} 中,
我想做的是将所有 {bundle_files} 编译到 public/javascripts/{bundle_name}.js,所以我不'不必重新组织一切。
关于如何解决这个问题有什么想法吗?
I'm using guard to compile coffee-scripts in a Rails 2.3.8 app.
I was previously using bistro_car bundles, so my scripts are organized in app/scripts/{bundle_name}/{bundle_files}
What I would like to do is compile all {bundle_files} to public/javascripts/{bundle_name}.js so I don't have to re-organize everything.
Any ideas on how to approach this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以使用
coffee
命令得到的最接近的是Which will result in a JS file like
app/scripts/{bundle_name}/concatenation.js
.您可以编写一个非常简单的 Cakefile 来迭代所有包。The closest I can get using just the
coffee
command isWhich will result in a JS file like
app/scripts/{bundle_name}/concatenation.js
. You could write a pretty simple Cakefile to iterate over all your bundles.