Rails:使用 rake:javascript 的注释
有没有办法配置 rake:notes 来解析 javascript 文件并发出相应的注释? 谢谢
Is there a way to configure rake:notes to parse javascript files and emit respective notes?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您愿意,您可以直接使用 grep 执行此操作
如果您只想要 TODO,
您可以使用以下命令来搜索项目中的所有 js,而不仅仅是公共 javascript 下的文件。
以下是如何将其转变为 rake 任务。
现在您可以从项目根目录执行
rakenotes:js
。You can do this with grep directly if you want
If you wanted only TODO's
You could use the following to Search all js in the project, not just the files under public javascripts.
Here is how you can turn this into a rake task.
Now you can execute
rake notes:js
from the project root.在 Rails 4.2 中,您已经支持 javascript 注释,但如果您想为其他扩展添加注释,请将此行添加到您的
config/application.rb
文件中:In Rails 4.2 you already have support for javascript annotations, altough if you want to add anotatoions for other extensions add this line to your
config/application.rb
file: