simplecov-html 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +24 -0
- data/LICENSE +20 -0
- data/README.rdoc +26 -0
- data/Rakefile +54 -0
- data/VERSION +1 -0
- data/assets/app.js +48 -0
- data/assets/fancybox/blank.gif +0 -0
- data/assets/fancybox/fancy_close.png +0 -0
- data/assets/fancybox/fancy_loading.png +0 -0
- data/assets/fancybox/fancy_nav_left.png +0 -0
- data/assets/fancybox/fancy_nav_right.png +0 -0
- data/assets/fancybox/fancy_shadow_e.png +0 -0
- data/assets/fancybox/fancy_shadow_n.png +0 -0
- data/assets/fancybox/fancy_shadow_ne.png +0 -0
- data/assets/fancybox/fancy_shadow_nw.png +0 -0
- data/assets/fancybox/fancy_shadow_s.png +0 -0
- data/assets/fancybox/fancy_shadow_se.png +0 -0
- data/assets/fancybox/fancy_shadow_sw.png +0 -0
- data/assets/fancybox/fancy_shadow_w.png +0 -0
- data/assets/fancybox/fancy_title_left.png +0 -0
- data/assets/fancybox/fancy_title_main.png +0 -0
- data/assets/fancybox/fancy_title_over.png +0 -0
- data/assets/fancybox/fancy_title_right.png +0 -0
- data/assets/fancybox/fancybox-x.png +0 -0
- data/assets/fancybox/fancybox-y.png +0 -0
- data/assets/fancybox/fancybox.png +0 -0
- data/assets/fancybox/jquery.fancybox-1.3.1.css +363 -0
- data/assets/fancybox/jquery.fancybox-1.3.1.pack.js +44 -0
- data/assets/jquery-1.4.2.min.js +155 -0
- data/assets/jquery.dataTables.min.js +152 -0
- data/assets/jquery.timeago.js +141 -0
- data/assets/loading.gif +0 -0
- data/assets/magnify.png +0 -0
- data/assets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/assets/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/assets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/assets/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/assets/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/assets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/assets/smoothness/jquery-ui-1.8.4.custom.css +295 -0
- data/assets/stylesheet.css +341 -0
- data/lib/simplecov-html.rb +109 -0
- data/simplecov-html.gemspec +103 -0
- data/test/helper.rb +10 -0
- data/test/test_simple_cov-html.rb +7 -0
- data/views/file_list.erb +36 -0
- data/views/layout.erb +42 -0
- data/views/source_file.erb +33 -0
- metadata +150 -0
@@ -0,0 +1,109 @@
|
|
1
|
+
require 'erb'
|
2
|
+
require 'fileutils'
|
3
|
+
require 'digest/sha1'
|
4
|
+
require 'time'
|
5
|
+
require 'simple_cov'
|
6
|
+
|
7
|
+
# Ensure we are using an compatible version of SimpleCov
|
8
|
+
if Gem::Version.new(SimpleCov::VERSION) < Gem::Version.new("0.2.0")
|
9
|
+
raise RuntimeError, "The version of SimpleCov you are using is too old. Please update with 'gem install simplecov'"
|
10
|
+
end
|
11
|
+
|
12
|
+
class SimpleCov::Formatter::HTMLFormatter
|
13
|
+
VERSION = File.read(File.join(File.dirname(__FILE__), '../VERSION')).strip.chomp
|
14
|
+
|
15
|
+
def format(result)
|
16
|
+
Dir[File.join(File.dirname(__FILE__), '../assets/*')].each do |path|
|
17
|
+
FileUtils.cp_r(path, asset_output_path)
|
18
|
+
end
|
19
|
+
|
20
|
+
File.open(File.join(output_path, "index.html"), "w+") do |file|
|
21
|
+
file.puts template('layout').result(binding)
|
22
|
+
end
|
23
|
+
puts "Coverage report generated for #{result.command_name} to #{output_path}"
|
24
|
+
end
|
25
|
+
|
26
|
+
private
|
27
|
+
|
28
|
+
# Returns the an erb instance for the template of given name
|
29
|
+
def template(name)
|
30
|
+
ERB.new(File.read(File.join(File.dirname(__FILE__), '../views/', "#{name}.erb")))
|
31
|
+
end
|
32
|
+
|
33
|
+
def output_path
|
34
|
+
SimpleCov.coverage_path
|
35
|
+
end
|
36
|
+
|
37
|
+
def asset_output_path
|
38
|
+
return @asset_output_path if @asset_output_path
|
39
|
+
@asset_output_path = File.join(output_path, 'assets', SimpleCov::Formatter::HTMLFormatter::VERSION)
|
40
|
+
FileUtils.mkdir_p(@asset_output_path)
|
41
|
+
@asset_output_path
|
42
|
+
end
|
43
|
+
|
44
|
+
def assets_path(name)
|
45
|
+
File.join('./assets', SimpleCov::Formatter::HTMLFormatter::VERSION, name)
|
46
|
+
end
|
47
|
+
|
48
|
+
# Returns the html for the given source_file
|
49
|
+
def formatted_source_file(source_file)
|
50
|
+
template('source_file').result(binding)
|
51
|
+
end
|
52
|
+
|
53
|
+
# Returns a table containing the given source files
|
54
|
+
def formatted_file_list(title, source_files)
|
55
|
+
template('file_list').result(binding)
|
56
|
+
end
|
57
|
+
|
58
|
+
# Computes the coverage based upon lines covered and lines missed
|
59
|
+
def coverage(file_list)
|
60
|
+
return 100.0 if file_list.length == 0
|
61
|
+
lines_missed = file_list.map {|f| f.missed_lines.count }.inject(&:+)
|
62
|
+
|
63
|
+
lines_covered(file_list) * 100 / lines_of_code(file_list).to_f
|
64
|
+
end
|
65
|
+
|
66
|
+
def lines_of_code(file_list)
|
67
|
+
lines_missed(file_list) + lines_covered(file_list)
|
68
|
+
end
|
69
|
+
|
70
|
+
def lines_covered(file_list)
|
71
|
+
return 0.0 if file_list.length == 0
|
72
|
+
file_list.map {|f| f.covered_lines.count }.inject(&:+)
|
73
|
+
end
|
74
|
+
|
75
|
+
def lines_missed(file_list)
|
76
|
+
return 0.0 if file_list.length == 0
|
77
|
+
file_list.map {|f| f.missed_lines.count }.inject(&:+)
|
78
|
+
end
|
79
|
+
|
80
|
+
def coverage_css_class(covered_percent)
|
81
|
+
if covered_percent > 90
|
82
|
+
'green'
|
83
|
+
elsif covered_percent > 80
|
84
|
+
'yellow'
|
85
|
+
else
|
86
|
+
'red'
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
# Return a (kind of) unique id for the source file given. Uses SHA1 on path for the id
|
91
|
+
def id(source_file)
|
92
|
+
Digest::SHA1.hexdigest(source_file.filename)
|
93
|
+
end
|
94
|
+
|
95
|
+
def timeago(time)
|
96
|
+
"<abbr class=\"timeago\" title=\"#{time.iso8601}\">#{time.iso8601}</abbr>"
|
97
|
+
end
|
98
|
+
|
99
|
+
def shortened_filename(source_file)
|
100
|
+
source_file.filename.gsub(SimpleCov.root, '.')
|
101
|
+
end
|
102
|
+
|
103
|
+
def link_to_source_file(source_file)
|
104
|
+
%Q(<a href="##{id source_file}" class="src_link" title="#{shortened_filename source_file}">#{shortened_filename source_file}</a>)
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
# Set up the html formatter
|
109
|
+
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
|
@@ -0,0 +1,103 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{simplecov-html}
|
8
|
+
s.version = "0.3.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Christoph Olszowka"]
|
12
|
+
s.date = %q{2010-08-22}
|
13
|
+
s.description = %q{HTML formatter for SimpleCov code coverage tool for ruby 1.9+}
|
14
|
+
s.email = %q{christoph at olszowka de}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"assets/app.js",
|
27
|
+
"assets/fancybox/blank.gif",
|
28
|
+
"assets/fancybox/fancy_close.png",
|
29
|
+
"assets/fancybox/fancy_loading.png",
|
30
|
+
"assets/fancybox/fancy_nav_left.png",
|
31
|
+
"assets/fancybox/fancy_nav_right.png",
|
32
|
+
"assets/fancybox/fancy_shadow_e.png",
|
33
|
+
"assets/fancybox/fancy_shadow_n.png",
|
34
|
+
"assets/fancybox/fancy_shadow_ne.png",
|
35
|
+
"assets/fancybox/fancy_shadow_nw.png",
|
36
|
+
"assets/fancybox/fancy_shadow_s.png",
|
37
|
+
"assets/fancybox/fancy_shadow_se.png",
|
38
|
+
"assets/fancybox/fancy_shadow_sw.png",
|
39
|
+
"assets/fancybox/fancy_shadow_w.png",
|
40
|
+
"assets/fancybox/fancy_title_left.png",
|
41
|
+
"assets/fancybox/fancy_title_main.png",
|
42
|
+
"assets/fancybox/fancy_title_over.png",
|
43
|
+
"assets/fancybox/fancy_title_right.png",
|
44
|
+
"assets/fancybox/fancybox-x.png",
|
45
|
+
"assets/fancybox/fancybox-y.png",
|
46
|
+
"assets/fancybox/fancybox.png",
|
47
|
+
"assets/fancybox/jquery.fancybox-1.3.1.css",
|
48
|
+
"assets/fancybox/jquery.fancybox-1.3.1.pack.js",
|
49
|
+
"assets/jquery-1.4.2.min.js",
|
50
|
+
"assets/jquery.dataTables.min.js",
|
51
|
+
"assets/jquery.timeago.js",
|
52
|
+
"assets/loading.gif",
|
53
|
+
"assets/magnify.png",
|
54
|
+
"assets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png",
|
55
|
+
"assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png",
|
56
|
+
"assets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png",
|
57
|
+
"assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png",
|
58
|
+
"assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png",
|
59
|
+
"assets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png",
|
60
|
+
"assets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png",
|
61
|
+
"assets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png",
|
62
|
+
"assets/smoothness/images/ui-icons_222222_256x240.png",
|
63
|
+
"assets/smoothness/images/ui-icons_2e83ff_256x240.png",
|
64
|
+
"assets/smoothness/images/ui-icons_454545_256x240.png",
|
65
|
+
"assets/smoothness/images/ui-icons_888888_256x240.png",
|
66
|
+
"assets/smoothness/images/ui-icons_cd0a0a_256x240.png",
|
67
|
+
"assets/smoothness/jquery-ui-1.8.4.custom.css",
|
68
|
+
"assets/stylesheet.css",
|
69
|
+
"lib/simplecov-html.rb",
|
70
|
+
"simplecov-html.gemspec",
|
71
|
+
"test/helper.rb",
|
72
|
+
"test/test_simple_cov-html.rb",
|
73
|
+
"views/file_list.erb",
|
74
|
+
"views/layout.erb",
|
75
|
+
"views/source_file.erb"
|
76
|
+
]
|
77
|
+
s.homepage = %q{http://github.com/colszowka/simplecov-html}
|
78
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
79
|
+
s.require_paths = ["lib"]
|
80
|
+
s.rubygems_version = %q{1.3.7}
|
81
|
+
s.summary = %q{HTML formatter for SimpleCov code coverage tool for ruby 1.9+}
|
82
|
+
s.test_files = [
|
83
|
+
"test/helper.rb",
|
84
|
+
"test/test_simple_cov-html.rb"
|
85
|
+
]
|
86
|
+
|
87
|
+
if s.respond_to? :specification_version then
|
88
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
89
|
+
s.specification_version = 3
|
90
|
+
|
91
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
92
|
+
s.add_runtime_dependency(%q<simplecov>, [">= 0.3.0"])
|
93
|
+
s.add_development_dependency(%q<shoulda>, ["= 2.10.3"])
|
94
|
+
else
|
95
|
+
s.add_dependency(%q<simplecov>, [">= 0.3.0"])
|
96
|
+
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
97
|
+
end
|
98
|
+
else
|
99
|
+
s.add_dependency(%q<simplecov>, [">= 0.3.0"])
|
100
|
+
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
data/test/helper.rb
ADDED
data/views/file_list.erb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
<div class="file_list_container">
|
2
|
+
<h2 id="<%= title.gsub(/[^a-zA-Z]/, '') %>">
|
3
|
+
<%= title %>
|
4
|
+
(<span class="<%= coverage_css_class(coverage(source_files)) %>"><%= coverage(source_files).round(2) %>%</span>)
|
5
|
+
</h2>
|
6
|
+
<div>
|
7
|
+
<b><%= source_files.length %></b> files in total.
|
8
|
+
<b><%= lines_of_code(source_files) %></b> relevant lines.
|
9
|
+
<span class="green"><b><%= lines_covered(source_files) %></b> lines covered</span> and
|
10
|
+
<span class="red"><b><%= lines_missed(source_files) %></b> lines missed </span>
|
11
|
+
</div>
|
12
|
+
<table class="file_list">
|
13
|
+
<thead>
|
14
|
+
<tr>
|
15
|
+
<th>File</th>
|
16
|
+
<th>% covered</th>
|
17
|
+
<th>Lines</th>
|
18
|
+
<th>Relevant Lines</th>
|
19
|
+
<th>Lines covered</th>
|
20
|
+
<th>Lines missed</th>
|
21
|
+
</tr>
|
22
|
+
</thead>
|
23
|
+
<tbody>
|
24
|
+
<% source_files.each do |source_file| %>
|
25
|
+
<tr>
|
26
|
+
<td><%= link_to_source_file(source_file) %></td>
|
27
|
+
<td class="<%= coverage_css_class(source_file.covered_percent) %>"><%= source_file.covered_percent.round(2).to_s %> %</td>
|
28
|
+
<td><%= source_file.lines.count %></td>
|
29
|
+
<td><%= source_file.covered_lines.count + source_file.missed_lines.count %></td>
|
30
|
+
<td><%= source_file.covered_lines.count %></td>
|
31
|
+
<td><%= source_file.missed_lines.count %></td>
|
32
|
+
</tr>
|
33
|
+
<% end %>
|
34
|
+
</tbody>
|
35
|
+
</table>
|
36
|
+
</div>
|
data/views/layout.erb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Code coverage for <%= SimpleCov.project_name %></title>
|
4
|
+
<script src='<%= assets_path('jquery-1.4.2.min.js') %>' type='text/javascript'></script>
|
5
|
+
<script src='<%= assets_path('jquery.dataTables.min.js') %>' type='text/javascript'></script>
|
6
|
+
<script src='<%= assets_path('fancybox/jquery.fancybox-1.3.1.pack.js') %>' type='text/javascript'></script>
|
7
|
+
<script src='<%= assets_path('jquery.timeago.js') %>' type='text/javascript'></script>
|
8
|
+
<script src='<%= assets_path('app.js') %>' type='text/javascript'></script>
|
9
|
+
<link href='<%= assets_path('stylesheet.css') %>' media='screen, projection, print' rel='stylesheet' type='text/css'>
|
10
|
+
<link href='<%= assets_path('fancybox/jquery.fancybox-1.3.1.css') %>' media='screen, projection, print' rel='stylesheet' type='text/css'>
|
11
|
+
<link href='<%= assets_path('smoothness/jquery-ui-1.8.4.custom.css') %>' media='screen, projection, print' rel='stylesheet' type='text/css'>
|
12
|
+
</head>
|
13
|
+
|
14
|
+
<body>
|
15
|
+
<div id="loading">
|
16
|
+
<img src="<%= assets_path('loading.gif') %>" alt="loading"/>
|
17
|
+
</div>
|
18
|
+
<div id="wrapper" style="display:none;">
|
19
|
+
<div class="timestamp">Generated <%= timeago(Time.now) %></div>
|
20
|
+
<ul class="group_tabs"></ul>
|
21
|
+
|
22
|
+
<div id="content">
|
23
|
+
<%= formatted_file_list("All Files", result.source_files) %>
|
24
|
+
|
25
|
+
<% result.groups.each do |name, files| %>
|
26
|
+
<%= formatted_file_list(name, files) %>
|
27
|
+
<% end %>
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<div id="footer">
|
31
|
+
Generated by <a href="http://github.com/colszowka/simple_cov">SimpleCov</a> v<%= SimpleCov::VERSION %><br/>
|
32
|
+
using <%= result.command_name %>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div class="source_files">
|
36
|
+
<% result.source_files.each do |source_file| %>
|
37
|
+
<%= formatted_source_file(source_file) %>
|
38
|
+
<% end %>
|
39
|
+
</div>
|
40
|
+
</div>
|
41
|
+
</body>
|
42
|
+
</html>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<div class="source_table" id="<%= id source_file %>">
|
2
|
+
<table>
|
3
|
+
<thead>
|
4
|
+
<tr>
|
5
|
+
<td colspan="3">
|
6
|
+
<h3><%= shortened_filename source_file %></h3>
|
7
|
+
<h4><span class="<%= coverage_css_class(source_file.covered_percent) %>"><%= source_file.covered_percent.round(2).to_s %> %</span> covered</h4>
|
8
|
+
</td>
|
9
|
+
</tr>
|
10
|
+
<tr>
|
11
|
+
<th>#</th>
|
12
|
+
<th></th>
|
13
|
+
<th>Hits</th>
|
14
|
+
</tr>
|
15
|
+
</thead>
|
16
|
+
<tbody>
|
17
|
+
<% source_file.lines.each do |line| %>
|
18
|
+
<% classname = line.coverage ? (line.coverage > 0 ? 'hit' : 'miss') : 'never' %>
|
19
|
+
<tr class="<%= classname %>" <%= line.coverage ? "data-hits=\"#{line.coverage}\"" : '' %>>
|
20
|
+
<td class="line_number">
|
21
|
+
<pre><%= line.number %></pre>
|
22
|
+
</td>
|
23
|
+
<td>
|
24
|
+
<pre><%= line.src.chomp %></pre>
|
25
|
+
</td>
|
26
|
+
<td class="hits">
|
27
|
+
<%= line.coverage %>
|
28
|
+
</td>
|
29
|
+
</tr>
|
30
|
+
<% end %>
|
31
|
+
</tbody>
|
32
|
+
</table>
|
33
|
+
</div>
|
metadata
ADDED
@@ -0,0 +1,150 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: simplecov-html
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 3
|
8
|
+
- 0
|
9
|
+
version: 0.3.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Christoph Olszowka
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-08-22 00:00:00 +02:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: simplecov
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
- 3
|
31
|
+
- 0
|
32
|
+
version: 0.3.0
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: shoulda
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - "="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
segments:
|
44
|
+
- 2
|
45
|
+
- 10
|
46
|
+
- 3
|
47
|
+
version: 2.10.3
|
48
|
+
type: :development
|
49
|
+
version_requirements: *id002
|
50
|
+
description: HTML formatter for SimpleCov code coverage tool for ruby 1.9+
|
51
|
+
email: christoph at olszowka de
|
52
|
+
executables: []
|
53
|
+
|
54
|
+
extensions: []
|
55
|
+
|
56
|
+
extra_rdoc_files:
|
57
|
+
- LICENSE
|
58
|
+
- README.rdoc
|
59
|
+
files:
|
60
|
+
- .document
|
61
|
+
- .gitignore
|
62
|
+
- LICENSE
|
63
|
+
- README.rdoc
|
64
|
+
- Rakefile
|
65
|
+
- VERSION
|
66
|
+
- assets/app.js
|
67
|
+
- assets/fancybox/blank.gif
|
68
|
+
- assets/fancybox/fancy_close.png
|
69
|
+
- assets/fancybox/fancy_loading.png
|
70
|
+
- assets/fancybox/fancy_nav_left.png
|
71
|
+
- assets/fancybox/fancy_nav_right.png
|
72
|
+
- assets/fancybox/fancy_shadow_e.png
|
73
|
+
- assets/fancybox/fancy_shadow_n.png
|
74
|
+
- assets/fancybox/fancy_shadow_ne.png
|
75
|
+
- assets/fancybox/fancy_shadow_nw.png
|
76
|
+
- assets/fancybox/fancy_shadow_s.png
|
77
|
+
- assets/fancybox/fancy_shadow_se.png
|
78
|
+
- assets/fancybox/fancy_shadow_sw.png
|
79
|
+
- assets/fancybox/fancy_shadow_w.png
|
80
|
+
- assets/fancybox/fancy_title_left.png
|
81
|
+
- assets/fancybox/fancy_title_main.png
|
82
|
+
- assets/fancybox/fancy_title_over.png
|
83
|
+
- assets/fancybox/fancy_title_right.png
|
84
|
+
- assets/fancybox/fancybox-x.png
|
85
|
+
- assets/fancybox/fancybox-y.png
|
86
|
+
- assets/fancybox/fancybox.png
|
87
|
+
- assets/fancybox/jquery.fancybox-1.3.1.css
|
88
|
+
- assets/fancybox/jquery.fancybox-1.3.1.pack.js
|
89
|
+
- assets/jquery-1.4.2.min.js
|
90
|
+
- assets/jquery.dataTables.min.js
|
91
|
+
- assets/jquery.timeago.js
|
92
|
+
- assets/loading.gif
|
93
|
+
- assets/magnify.png
|
94
|
+
- assets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
|
95
|
+
- assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
|
96
|
+
- assets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
|
97
|
+
- assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
|
98
|
+
- assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png
|
99
|
+
- assets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
|
100
|
+
- assets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
|
101
|
+
- assets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
102
|
+
- assets/smoothness/images/ui-icons_222222_256x240.png
|
103
|
+
- assets/smoothness/images/ui-icons_2e83ff_256x240.png
|
104
|
+
- assets/smoothness/images/ui-icons_454545_256x240.png
|
105
|
+
- assets/smoothness/images/ui-icons_888888_256x240.png
|
106
|
+
- assets/smoothness/images/ui-icons_cd0a0a_256x240.png
|
107
|
+
- assets/smoothness/jquery-ui-1.8.4.custom.css
|
108
|
+
- assets/stylesheet.css
|
109
|
+
- lib/simplecov-html.rb
|
110
|
+
- simplecov-html.gemspec
|
111
|
+
- test/helper.rb
|
112
|
+
- test/test_simple_cov-html.rb
|
113
|
+
- views/file_list.erb
|
114
|
+
- views/layout.erb
|
115
|
+
- views/source_file.erb
|
116
|
+
has_rdoc: true
|
117
|
+
homepage: http://github.com/colszowka/simplecov-html
|
118
|
+
licenses: []
|
119
|
+
|
120
|
+
post_install_message:
|
121
|
+
rdoc_options:
|
122
|
+
- --charset=UTF-8
|
123
|
+
require_paths:
|
124
|
+
- lib
|
125
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
126
|
+
none: false
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
segments:
|
131
|
+
- 0
|
132
|
+
version: "0"
|
133
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
134
|
+
none: false
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
segments:
|
139
|
+
- 0
|
140
|
+
version: "0"
|
141
|
+
requirements: []
|
142
|
+
|
143
|
+
rubyforge_project:
|
144
|
+
rubygems_version: 1.3.7
|
145
|
+
signing_key:
|
146
|
+
specification_version: 3
|
147
|
+
summary: HTML formatter for SimpleCov code coverage tool for ruby 1.9+
|
148
|
+
test_files:
|
149
|
+
- test/helper.rb
|
150
|
+
- test/test_simple_cov-html.rb
|