edouard-metric_fu 1.0.4.2 → 1.0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/base/configuration.rb +1 -0
- data/lib/graphs/flay_grapher.rb +1 -1
- data/lib/graphs/flog_grapher.rb +1 -1
- data/lib/graphs/rcov_grapher.rb +1 -1
- data/lib/graphs/reek_grapher.rb +1 -1
- data/lib/graphs/roodi_grapher.rb +1 -1
- data/lib/templates/awesome/flay.html.erb +1 -3
- data/lib/templates/awesome/flog.html.erb +1 -3
- data/lib/templates/awesome/rcov.html.erb +1 -3
- data/lib/templates/awesome/reek.html.erb +1 -3
- data/lib/templates/awesome/roodi.html.erb +1 -3
- metadata +1 -1
data/lib/base/configuration.rb
CHANGED
data/lib/graphs/flay_grapher.rb
CHANGED
data/lib/graphs/flog_grapher.rb
CHANGED
data/lib/graphs/rcov_grapher.rb
CHANGED
data/lib/graphs/reek_grapher.rb
CHANGED
data/lib/graphs/roodi_grapher.rb
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
<p><a href='http://ruby.sadi.st/Flay.html'>Flay</a> analyzes ruby code for structural similarities.</p>
|
4
4
|
|
5
|
-
<
|
6
|
-
<img src="flay.png?<%= Time.now.localtime %>" width="400">
|
7
|
-
</a>
|
5
|
+
<img src="flay.png?<%= Time.now.localtime %>">
|
8
6
|
|
9
7
|
<h4>Total Score (lower is better): <%= @flay[:total_score] %></h4>
|
10
8
|
|
@@ -1,9 +1,7 @@
|
|
1
1
|
<h3>Flog Results</h3>
|
2
2
|
<p><a href='http://ruby.sadi.st/Flog.html'>Flog</a> measures code complexity.</p>
|
3
3
|
|
4
|
-
<
|
5
|
-
<img src="flog.png?<%= Time.now.localtime %>" width="400">
|
6
|
-
</a>
|
4
|
+
<img src="flog.png?<%= Time.now.localtime %>">
|
7
5
|
|
8
6
|
<h2>Total Flog score for all methods: <%= @flog[:total]%></h2>
|
9
7
|
<h2>Average Flog score for all methods: <%= @flog[:average]%></h2>
|
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
<p>C0 code coverage information.</p>
|
4
4
|
|
5
|
-
<
|
6
|
-
<img src="rcov.png?<%= Time.now.localtime %>" width="400">
|
7
|
-
</a>
|
5
|
+
<img src="rcov.png?<%= Time.now.localtime %>">
|
8
6
|
|
9
7
|
<p>Total Coverage: <%= @rcov.delete(:global_percent_run) %>% </p>
|
10
8
|
<table>
|
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
<p><a href="http://reek.rubyforge.org/">Reek</a> detects common code smells in ruby code.</p>
|
4
4
|
|
5
|
-
<
|
6
|
-
<img src="reek.png?<%= Time.now.localtime %>" width="400">
|
7
|
-
</a>
|
5
|
+
<img src="reek.png?<%= Time.now.localtime %>">
|
8
6
|
|
9
7
|
<table>
|
10
8
|
<tr>
|
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
<p><a href="http://roodi.rubyforge.org/">Roodi</a> parses your Ruby code and warns you about design issues you have based on the checks that is has configured.</p>
|
4
4
|
|
5
|
-
<
|
6
|
-
<img src="roodi.png?<%= Time.now.localtime %>" width="400">
|
7
|
-
</a>
|
5
|
+
<img src="roodi.png?<%= Time.now.localtime %>">
|
8
6
|
|
9
7
|
<table>
|
10
8
|
<tr>
|