我试图找到一种非常简单的方法来估计我的Rails项目的LOC,包括视图和CSS。
是否有一种方法来做到这一点使用TextMate?
如果没有,那么如何获得Rails的total LOC估计值呢?
编辑
为了澄清,我要求一种方法来确定一个值,包括 html和css。
输入rake stats
到终端。它将输出代码行和代码测试行。
看一下rake任务—添加视图应该不会太难:https://github.com/rails/rails/blob/master/railties/lib/rails/tasks/statistics.rake
STATS_DIRECTORIES = [
%w(Controllers app/controllers),
%w(Helpers app/helpers),
%w(Models app/models),
%w(Libraries lib/),
%w(APIs app/apis),
%w(Integration tests test/integration),
%w(Functional tests test/functional),
%w(Unit tests test/unit)
].collect { |name, dir| [ name, "#{Rails.root}/#{dir}" ] }.select { |name, dir| File.directory?(dir) }
desc "Report code statistics (KLOCs, etc) from the application"
task :stats do
require 'rails/code_statistics'
CodeStatistics.new(*STATS_DIRECTORIES).to_s
end