simplecov-html 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/simplecov-html.gemspec +1 -1
- data/views/layout.erb +5 -2
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -6,7 +6,7 @@ Generates a nice HTML overview of your SimpleCov coverage results.
|
|
6
6
|
|
7
7
|
To use, add this to your Bundler Gemfile:
|
8
8
|
|
9
|
-
gem 'simplecov-html', '>= 0.
|
9
|
+
gem 'simplecov-html', '>= 0.3.3'
|
10
10
|
|
11
11
|
The html formatter will be used automatically. The HTML is put into the 'coverage' subdirectory of the
|
12
12
|
current working directory (supposedly the main dir of your project)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.4
|
data/simplecov-html.gemspec
CHANGED
data/views/layout.erb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html xmlns='http://www.w3.org/1999/xhtml'>
|
2
3
|
<head>
|
3
4
|
<title>Code coverage for <%= SimpleCov.project_name %></title>
|
5
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
4
6
|
<script src='<%= assets_path('jquery-1.4.2.min.js') %>' type='text/javascript'></script>
|
5
7
|
<script src='<%= assets_path('jquery.dataTables.min.js') %>' type='text/javascript'></script>
|
6
8
|
<script src='<%= assets_path('fancybox/jquery.fancybox-1.3.1.pack.js') %>' type='text/javascript'></script>
|
@@ -28,7 +30,8 @@
|
|
28
30
|
</div>
|
29
31
|
|
30
32
|
<div id="footer">
|
31
|
-
Generated by <a href="http://github.com/colszowka/simplecov">
|
33
|
+
Generated by <a href="http://github.com/colszowka/simplecov">simplecov</a> v<%= SimpleCov::VERSION %>
|
34
|
+
and simplecov-html v<%= SimpleCov::Formatter::HTMLFormatter::VERSION %><br/>
|
32
35
|
using <%= result.command_name %>
|
33
36
|
</div>
|
34
37
|
|