spinach_file_reporter 0.0.1.1 → 0.0.1.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5a2b9eeda4d5e704a15e561ad5e3eab24267f41
|
4
|
+
data.tar.gz: e565958d0d727e9c3c56c70f3454db3a327bed6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a6343a232fcff9a9a60b96be5e074c4aedd529095ac71654cfd488a3875dda2e57a78390634d61159e1482f6f5d66044612b8612b99d64b0b700ff99ad50ef8
|
7
|
+
data.tar.gz: d4570df2355d40857ab2b82232c28f30a0204091c4aea51847feb54bb169c8d02150576b577d72149bd816d666f1d27b3147b45696e313550bdffbcacf68b3fe
|
data/README.md
CHANGED
@@ -2,9 +2,11 @@
|
|
2
2
|
Gem version: 0.0.1
|
3
3
|
|
4
4
|
Reporter for Spinach tests. This reports to console and into a file.
|
5
|
-
File is saved under
|
5
|
+
File is saved under:
|
6
6
|
|
7
|
-
|
7
|
+
tmp/spinach_errors.txt
|
8
|
+
|
9
|
+
This code is based on spinach v0.4 output reporter.
|
8
10
|
|
9
11
|
## Installation
|
10
12
|
|
@@ -26,8 +26,9 @@ module Spinach
|
|
26
26
|
file.puts @file_errors.uniq.join(' ')
|
27
27
|
file.close
|
28
28
|
else
|
29
|
-
File.delete("tmp/spinach.txt")
|
29
|
+
File.delete("tmp/spinach.txt") if File.file?("tmp/spinach.txt")
|
30
30
|
end
|
31
|
+
super(success)
|
31
32
|
end
|
32
33
|
|
33
34
|
# Prints the feature name to the standard output
|
Binary file
|
@@ -3,7 +3,7 @@ require "spinach_file_reporter/gem_description"
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'spinach_file_reporter'
|
6
|
-
s.version = '0.0.1.
|
6
|
+
s.version = '0.0.1.2'
|
7
7
|
s.date = '2015-07-24'
|
8
8
|
s.summary = 'Reporter for spinach with file output'
|
9
9
|
s.description = Spinach::FileReporter::Reporter::GemDescription.to_s
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spinach_file_reporter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JuanMa Jurado
|
@@ -37,7 +37,7 @@ files:
|
|
37
37
|
- lib/spinach_file_reporter.rb
|
38
38
|
- lib/spinach_file_reporter/gem_description.rb
|
39
39
|
- lib/spinach_file_reporter/spinach_file_reporter.rb
|
40
|
-
- spinach_file_reporter-0.0.1.gem
|
40
|
+
- spinach_file_reporter-0.0.1.1.gem
|
41
41
|
- spinach_file_reporter.gemspec
|
42
42
|
homepage: https://github.com/jmjurado23/spinach_file_reporter
|
43
43
|
licenses:
|
Binary file
|