# Rails 中的 TODO
我读过一本 Rails 书,发现我们可以在代码中添加 # TODO: 和一些 # 的东西,这样我们就可以用一些 rake cmd 来回顾一下。
我的问题是我找不到那些“# stuff”和“rake cmd”在哪里,我用谷歌搜索并搜索,但找不到也不知道要搜索哪些关键字。
I had read through a rails book and once found we can add # TODO: and some # stuff in codes, so we can you some rake cmd to look back.
My problems is I can't find where are those "# stuff" and "rake cmd" I google and search around, but can't find and don't know what keywords to search.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用
# TODO
、# FIXME
和# OPTIMIZE
,并且可以通过以下 rake 任务轻松获得所有这些内容:rake Notes
除了默认注释之外,您始终可以指定和搜索您自己的注释:
You can use
# TODO
,# FIXME
, and# OPTIMIZE
and you can easily get all of these with the following rake task:rake notes
In addition to the default annotations, you can always specify and search for your own annotations:
耙子笔记:todo
rake notes:todo
顺便说一句,您需要从 Rails 应用程序的根目录运行该命令。另外,您可以运行:
获取 Rails Rakefile 中任务的完整列表
btw, you need to run that command from the root dir of your rails app. Also, you can run:
to get a full list of the tasks in your rails' Rakefile
打印所有注释
打印特定注释 (
FIXME
)Print all annotations
Print specific annotations (
FIXME
)