来自 TextMate 的项目代码行/LOC?
我正在尝试找到一种简单的方法来估计 Rails 项目的 LOC,包括视图和 CSS。
有没有办法使用 TextMate 来做到这一点?
如果没有,我们还能如何获得 Rails 的总 LOC 估算呢?
编辑
为了澄清起见,我要求一种方法来确定包括 html 和 css 的值。
I'm trying to find a trivially easy way of estimating the LOC for my Rails project, including views and CSS.
Is there a way to do this using TextMate?
If not, how else can one go about getting a total LOC estimate for Rails?
Edit
For clarification, I'm asking for a way to determine a value that includes html and css.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在终端中输入
rake stats
。它将输出代码行和测试代码行。Type
rake stats
into a terminal. It will output Code Lines of Code as well as Test Lines of Code.看一下 rake 任务 - 添加视图应该不会太困难:
Take a look at the rake task - it should not be too difficult to add the views: https://github.com/rails/rails/blob/master/railties/lib/rails/tasks/statistics.rake