simplecov-html 0.3.0 → 0.3.1
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/Rakefile +2 -2
- data/VERSION +1 -1
- data/lib/simplecov-html.rb +2 -2
- data/simplecov-html.gemspec +2 -2
- metadata +3 -3
data/Rakefile
CHANGED
@@ -7,7 +7,7 @@ begin
|
|
7
7
|
gem.name = "simplecov-html"
|
8
8
|
gem.summary = %Q{HTML formatter for SimpleCov code coverage tool for ruby 1.9+}
|
9
9
|
gem.description = %Q{HTML formatter for SimpleCov code coverage tool for ruby 1.9+}
|
10
|
-
gem.email = "christoph at olszowka
|
10
|
+
gem.email = "christoph at olszowka.de"
|
11
11
|
gem.homepage = "http://github.com/colszowka/simplecov-html"
|
12
12
|
gem.authors = ["Christoph Olszowka"]
|
13
13
|
gem.add_dependency "simplecov", ">= 0.3.0"
|
@@ -48,7 +48,7 @@ Rake::RDocTask.new do |rdoc|
|
|
48
48
|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
49
49
|
|
50
50
|
rdoc.rdoc_dir = 'rdoc'
|
51
|
-
rdoc.title = "
|
51
|
+
rdoc.title = "simplecov-html #{version}"
|
52
52
|
rdoc.rdoc_files.include('README*')
|
53
53
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
54
54
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
data/lib/simplecov-html.rb
CHANGED
@@ -2,10 +2,10 @@ require 'erb'
|
|
2
2
|
require 'fileutils'
|
3
3
|
require 'digest/sha1'
|
4
4
|
require 'time'
|
5
|
-
require '
|
5
|
+
require 'simplecov'
|
6
6
|
|
7
7
|
# Ensure we are using an compatible version of SimpleCov
|
8
|
-
if Gem::Version.new(SimpleCov::VERSION) < Gem::Version.new("0.
|
8
|
+
if Gem::Version.new(SimpleCov::VERSION) < Gem::Version.new("0.3.0")
|
9
9
|
raise RuntimeError, "The version of SimpleCov you are using is too old. Please update with 'gem install simplecov'"
|
10
10
|
end
|
11
11
|
|
data/simplecov-html.gemspec
CHANGED
@@ -5,13 +5,13 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{simplecov-html}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.1"
|
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"]
|
12
12
|
s.date = %q{2010-08-22}
|
13
13
|
s.description = %q{HTML formatter for SimpleCov code coverage tool for ruby 1.9+}
|
14
|
-
s.email = %q{christoph at olszowka
|
14
|
+
s.email = %q{christoph at olszowka.de}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
17
|
"README.rdoc"
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 1
|
9
|
+
version: 0.3.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Christoph Olszowka
|
@@ -48,7 +48,7 @@ dependencies:
|
|
48
48
|
type: :development
|
49
49
|
version_requirements: *id002
|
50
50
|
description: HTML formatter for SimpleCov code coverage tool for ruby 1.9+
|
51
|
-
email: christoph at olszowka
|
51
|
+
email: christoph at olszowka.de
|
52
52
|
executables: []
|
53
53
|
|
54
54
|
extensions: []
|