simplecov 0.3.2 → 0.3.3
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 +1 -1
- data/VERSION +1 -1
- data/lib/simplecov/configuration.rb +2 -1
- data/simplecov.gemspec +5 -5
- metadata +5 -5
data/Rakefile
CHANGED
|
@@ -10,7 +10,7 @@ begin
|
|
|
10
10
|
gem.email = "christoph at olszowka.de"
|
|
11
11
|
gem.homepage = "http://github.com/colszowka/simplecov"
|
|
12
12
|
gem.authors = ["Christoph Olszowka"]
|
|
13
|
-
gem.add_dependency 'simplecov-html', ">= 0.3.
|
|
13
|
+
gem.add_dependency 'simplecov-html', ">= 0.3.7"
|
|
14
14
|
gem.add_development_dependency "shoulda", "= 2.10.3"
|
|
15
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
16
16
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
require 'fileutils'
|
|
1
2
|
#
|
|
2
3
|
# Bundles the configuration options used for SimpleCov. All methods
|
|
3
4
|
# defined here are usable from SimpleCov directly. Please check out
|
|
@@ -34,7 +35,7 @@ module SimpleCov::Configuration
|
|
|
34
35
|
#
|
|
35
36
|
def coverage_path
|
|
36
37
|
coverage_path = File.join(root, coverage_dir)
|
|
37
|
-
|
|
38
|
+
FileUtils.mkdir_p coverage_path
|
|
38
39
|
coverage_path
|
|
39
40
|
end
|
|
40
41
|
|
data/simplecov.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{simplecov}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.3"
|
|
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
|
-
s.date = %q{2010-08-
|
|
12
|
+
s.date = %q{2010-08-26}
|
|
13
13
|
s.description = %q{Code coverage for Ruby 1.9 with a powerful configuration library and automatic merging of coverage across test suites}
|
|
14
14
|
s.email = %q{christoph at olszowka.de}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -73,14 +73,14 @@ Gem::Specification.new do |s|
|
|
|
73
73
|
s.specification_version = 3
|
|
74
74
|
|
|
75
75
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
76
|
-
s.add_runtime_dependency(%q<simplecov-html>, [">= 0.3.
|
|
76
|
+
s.add_runtime_dependency(%q<simplecov-html>, [">= 0.3.7"])
|
|
77
77
|
s.add_development_dependency(%q<shoulda>, ["= 2.10.3"])
|
|
78
78
|
else
|
|
79
|
-
s.add_dependency(%q<simplecov-html>, [">= 0.3.
|
|
79
|
+
s.add_dependency(%q<simplecov-html>, [">= 0.3.7"])
|
|
80
80
|
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
|
81
81
|
end
|
|
82
82
|
else
|
|
83
|
-
s.add_dependency(%q<simplecov-html>, [">= 0.3.
|
|
83
|
+
s.add_dependency(%q<simplecov-html>, [">= 0.3.7"])
|
|
84
84
|
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
|
85
85
|
end
|
|
86
86
|
end
|
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
|
+
- 3
|
|
9
|
+
version: 0.3.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Christoph Olszowka
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-08-
|
|
17
|
+
date: 2010-08-26 00:00:00 +02:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -28,8 +28,8 @@ dependencies:
|
|
|
28
28
|
segments:
|
|
29
29
|
- 0
|
|
30
30
|
- 3
|
|
31
|
-
-
|
|
32
|
-
version: 0.3.
|
|
31
|
+
- 7
|
|
32
|
+
version: 0.3.7
|
|
33
33
|
type: :runtime
|
|
34
34
|
version_requirements: *id001
|
|
35
35
|
- !ruby/object:Gem::Dependency
|