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 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.1.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.3
1
+ 0.3.4
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{simplecov-html}
8
- s.version = "0.3.3"
8
+ s.version = "0.3.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Christoph Olszowka"]
data/views/layout.erb CHANGED
@@ -1,6 +1,8 @@
1
- <html>
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">SimpleCov</a> v<%= SimpleCov::VERSION %><br/>
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
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 3
9
- version: 0.3.3
8
+ - 4
9
+ version: 0.3.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Christoph Olszowka