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: 3c36e9f36eae4d906bd88a0897b52fcec867b91c
4
- data.tar.gz: 4caf81fb55686887ba8846a1a91e376207fb4da9
3
+ metadata.gz: f5a2b9eeda4d5e704a15e561ad5e3eab24267f41
4
+ data.tar.gz: e565958d0d727e9c3c56c70f3454db3a327bed6f
5
5
  SHA512:
6
- metadata.gz: 32e5e1575393a586c34257e3158cde8d42b39dd077770368e2367148980f314712be56f85cf2895bf168cc404c7c871eb620b332efd8688378cf13c40610bc46
7
- data.tar.gz: 232be7b501e2768cbae08f746f0da3e1c2d0b024b139c72656c6c0d61bc86538cba56edfcc5cd2ea7435361485312ed8c5bce45d5e8383eb986d9033de77b768
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 tmp/spinach_errors.txt
5
+ File is saved under:
6
6
 
7
- This is a reporter that meant to use on Jenkins, combined with (https://github.com/dblock/jenkins-ansicolor-plugin) to bring the color output to Jenkins console.
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.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.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