Reputation: 27387
What does the following columns means?
Upvotes: 4
Views: 1081
Reputation: 135
When looking at the output from rake stats, there are a few important bits of information that you should look at first, and that are all in the final summary line, in this case:
A Code to Test Ratio of 1:1.2 is pretty good. For example, a Code to Test Ratio of 1 to 4 is somewhat ridiculous. Its incredibly high, and when you see something like this, its important to ask why? That’s pretty much the entire usefulness of the output of rake stats as a metric. Here are some -personal- guidelines:
There are a few other nice things in the output from rake stats that are helpful for a birds eye view of the application. For example, I can tell that your application has 6 models and 5 controllers.
Hope that helped.
Upvotes: 6