rapport 0.0.4 → 0.0.5
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/VERSION +1 -1
- data/lib/rapport/report_generators/{report_generator_csv.rb → report_generator_simple_csv.rb} +1 -1
- data/rapport.gemspec +3 -4
- data/test/rapport/report_generators/{report_generator_csv_test.rb → report_generator_simple_csv_test.rb} +3 -3
- metadata +5 -6
- data/test/logs/test.log +0 -6
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/rapport.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rapport}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = [%q{Andrew Wheeler}]
|
@@ -30,13 +30,12 @@ Gem::Specification.new do |s|
|
|
30
30
|
"lib/rapport.rb",
|
31
31
|
"lib/rapport/report.rb",
|
32
32
|
"lib/rapport/report_generator.rb",
|
33
|
-
"lib/rapport/report_generators/report_generator_csv.rb",
|
34
33
|
"lib/rapport/report_generators/report_generator_fake.rb",
|
34
|
+
"lib/rapport/report_generators/report_generator_simple_csv.rb",
|
35
35
|
"lib/test.rb",
|
36
36
|
"rapport.gemspec",
|
37
|
-
"test/logs/test.log",
|
38
37
|
"test/rapport/report_generator_test.rb",
|
39
|
-
"test/rapport/report_generators/
|
38
|
+
"test/rapport/report_generators/report_generator_simple_csv_test.rb",
|
40
39
|
"test/rapport/report_test.rb",
|
41
40
|
"test/test_helper.rb"
|
42
41
|
]
|
@@ -1,9 +1,9 @@
|
|
1
1
|
require File.dirname(__FILE__) + '/../../test_helper'
|
2
|
-
require 'rapport/report_generators/
|
2
|
+
require 'rapport/report_generators/report_generator_simple_csv'
|
3
3
|
|
4
4
|
class ReportTest < Test::Unit::TestCase
|
5
5
|
setup do
|
6
|
-
@rg_csv = Rapport::
|
6
|
+
@rg_csv = Rapport::ReportGeneratorSimpleCsv.new
|
7
7
|
end
|
8
8
|
|
9
9
|
context "cell_format Time" do
|
@@ -37,7 +37,7 @@ class ReportTest < Test::Unit::TestCase
|
|
37
37
|
|
38
38
|
context ".generate" do
|
39
39
|
setup do
|
40
|
-
@report = Rapport::TestReport.new(:format => '
|
40
|
+
@report = Rapport::TestReport.new(:format => 'simple_csv', :to_string => true)
|
41
41
|
end
|
42
42
|
|
43
43
|
execute do
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rapport
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 5
|
10
|
+
version: 0.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Andrew Wheeler
|
@@ -198,13 +198,12 @@ files:
|
|
198
198
|
- lib/rapport.rb
|
199
199
|
- lib/rapport/report.rb
|
200
200
|
- lib/rapport/report_generator.rb
|
201
|
-
- lib/rapport/report_generators/report_generator_csv.rb
|
202
201
|
- lib/rapport/report_generators/report_generator_fake.rb
|
202
|
+
- lib/rapport/report_generators/report_generator_simple_csv.rb
|
203
203
|
- lib/test.rb
|
204
204
|
- rapport.gemspec
|
205
|
-
- test/logs/test.log
|
206
205
|
- test/rapport/report_generator_test.rb
|
207
|
-
- test/rapport/report_generators/
|
206
|
+
- test/rapport/report_generators/report_generator_simple_csv_test.rb
|
208
207
|
- test/rapport/report_test.rb
|
209
208
|
- test/test_helper.rb
|
210
209
|
homepage: http://github.com/jawheeler/rapport
|
data/test/logs/test.log
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
I, [2012-01-10T11:15:14.417199 #688] INFO -- : Generating Rapport::TestReport csv...
|
2
|
-
D, [2012-01-10T11:15:14.418053 #688] DEBUG -- : [0, "T0 0", "Formatted~0", "~0~0"]
|
3
|
-
I, [2012-01-10T11:15:14.419484 #688] INFO -- : Generated Rapport::TestReport csv.
|
4
|
-
I, [2012-01-10T11:15:14.419983 #688] INFO -- : Generating Rapport::TestReport csv...
|
5
|
-
D, [2012-01-10T11:15:14.420228 #688] DEBUG -- : [0, "T0 0", "Formatted~0", "~0~0"]
|
6
|
-
I, [2012-01-10T11:15:14.421822 #688] INFO -- : Generated Rapport::TestReport csv.
|