Skip to content

Commit 3e1249c

Browse files
authored
Merge pull request #5 from magneland/mlAddMoreAggregateStats
Ml add more aggregate stats
2 parents d8bb932 + f6b864b commit 3e1249c

File tree

2 files changed

+30
-28
lines changed

2 files changed

+30
-28
lines changed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ See stuff about a Rails app.
55
There were a few things missing to the included `rake stats`
66
RailsStats mainly adds the ability to be run from outside the project in question. This can be helpful if the app you are interested in can not be booted for some reason.
77

8-
### Run it
8+
### Run it outside Rails project
99

1010
```bash
1111

@@ -33,7 +33,12 @@ Directory: /path/to/app/
3333
| Total | 21805 | 16980 | 218 | 1483 | 6 | 9 |
3434
+----------------------+-------+-------+---------+---------+-----+-------+
3535
Code LOC: 10142 Test LOC: 6838 Code to Test Ratio: 1:0.7
36+
```
37+
38+
### Run it on many Rails engines
3639

40+
```bash
41+
$ for dir in /path/to/many/engines/*/; do bundle exec rake stats[$dir]; done
3742
```
3843

3944
### Within your Rails project
@@ -62,7 +67,7 @@ RailsStats adds more coverage than the default.
6267

6368
### Example output
6469

65-
Here are some open source Rails projects an their output.
70+
Here are some open source Rails projects and their output.
6671

6772
```bash
6873
$ bundle exec rake stats[/users/brian/examples/diaspora/]

lib/rails_stats/code_statistics.rb

+23-26
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ def initialize(root_directory)
1515
@key_concepts = calculate_key_concepts
1616
@projects = calculate_projects
1717
@statistics = calculate_statistics
18-
@total = calculate_total
18+
@code_total, @tests_total, @grand_total = calculate_totals
1919
end
2020

2121
def to_s
2222
print_header
2323
@statistics.each { |key, stats| print_line(key, stats) }
2424
print_splitter
2525

26-
if @total
27-
print_line("Total", @total)
28-
print_splitter
29-
end
26+
print_line("Code", @code_total)
27+
print_line("Tests", @tests_total)
28+
print_line("Total", @grand_total)
29+
print_splitter
3030

3131
print_code_test_stats
3232
end
@@ -111,52 +111,49 @@ def calculate_statistics
111111
out
112112
end
113113

114-
def calculate_total
115-
@statistics.each_with_object(CodeStatisticsCalculator.new) do |pair, total|
116-
total.add(pair.last)
114+
def calculate_totals
115+
# TODO: make this a single loop
116+
code_total = @statistics.each_with_object(CodeStatisticsCalculator.new) do |pair, code_total|
117+
code_total.add(pair.last) unless pair.last.test
117118
end
118-
end
119119

120-
def calculate_code
121-
code_loc = 0
122-
@statistics.each { |k, v| code_loc += v.code_lines unless v.test }
123-
code_loc
124-
end
120+
tests_total = @statistics.each_with_object(CodeStatisticsCalculator.new) do |pair, tests_total|
121+
tests_total.add(pair.last) if pair.last.test
122+
end
125123

126-
def calculate_tests
127-
test_loc = 0
128-
@statistics.each { |k, v| test_loc += v.code_lines if v.test }
129-
test_loc
124+
grand_total = @statistics.each_with_object(CodeStatisticsCalculator.new) do |pair, total|
125+
total.add(pair.last)
126+
end
127+
128+
[code_total, tests_total, grand_total]
130129
end
131130

132131
def print_header
133132
print_splitter
134-
puts "| Name | Lines | LOC | Classes | Methods | M/C | LOC/M |"
133+
puts "| Name | Lines | LOC | Classes | Methods | M/C | LOC/M |"
135134
print_splitter
136135
end
137136

138137
def print_splitter
139-
puts "+----------------------+-------+-------+---------+---------+-----+-------+"
138+
puts "+----------------------+---------+---------+---------+---------+-----+-------+"
140139
end
141140

142141
def print_line(name, statistics)
143142
m_over_c = (statistics.methods / statistics.classes) rescue m_over_c = 0
144143
loc_over_m = (statistics.code_lines / statistics.methods) - 2 rescue loc_over_m = 0
145144

146145
puts "| #{name.ljust(20)} " \
147-
"| #{statistics.lines.to_s.rjust(5)} " \
148-
"| #{statistics.code_lines.to_s.rjust(5)} " \
146+
"| #{statistics.lines.to_s.rjust(7)} " \
147+
"| #{statistics.code_lines.to_s.rjust(7)} " \
149148
"| #{statistics.classes.to_s.rjust(7)} " \
150149
"| #{statistics.methods.to_s.rjust(7)} " \
151150
"| #{m_over_c.to_s.rjust(3)} " \
152151
"| #{loc_over_m.to_s.rjust(5)} |"
153152
end
154153

155154
def print_code_test_stats
156-
code = calculate_code
157-
tests = calculate_tests
158-
159-
puts " Code LOC: #{code} Test LOC: #{tests} Code to Test Ratio: 1:#{sprintf("%.1f", tests.to_f/code)}"
155+
code_to_test_ratio = @tests_total.code_lines.to_f / @code_total.code_lines
156+
puts " Code LOC: #{@code_total.code_lines} Test LOC: #{@tests_total.code_lines} Code to Test Ratio: 1:#{sprintf("%.1f", code_to_test_ratio)}"
160157
puts ""
161158
end
162159
end

0 commit comments

Comments
 (0)