simplecov-html 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
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 de"
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 = "simple_cov-html #{version}"
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.0
1
+ 0.3.1
@@ -2,10 +2,10 @@ require 'erb'
2
2
  require 'fileutils'
3
3
  require 'digest/sha1'
4
4
  require 'time'
5
- require 'simple_cov'
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.2.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
 
@@ -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.0"
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 de}
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
- - 0
9
- version: 0.3.0
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 de
51
+ email: christoph at olszowka.de
52
52
  executables: []
53
53
 
54
54
  extensions: []