spreewald 4.3.3 → 4.3.4

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
  SHA256:
3
- metadata.gz: 154442a339318c7f74e490bd7e8783e8abb24820d564b7c52fe6072bfd5cdb2d
4
- data.tar.gz: 2351555ffdd10b049ccf1e06e50b5eee41206d15bf716354337c4effb8464d38
3
+ metadata.gz: 5f34885277a60b29d3517bbd0184b7af2dbf9f6240260f78abd4b448ea2d0162
4
+ data.tar.gz: bea792896988996ad517bc931db34a53153f14047523cfd81497bb67398edeec
5
5
  SHA512:
6
- metadata.gz: 4b4534235a684eaeb0f19b08fd207254c4d3bbf87a2a78cbb34bf04414a5addef88624127abfe3b426a5415d3a517a556be569743248aa098b46c69b7013a59e
7
- data.tar.gz: fe86089babc5374da459a9305097292a5d47943cd0cabf6932bd88768d7447e8e7424fff7b9c4c0de2ebc00c82cc83e54fa89636f120c89e612a6dddf5a8c4d6
6
+ metadata.gz: 0ebfa401560e88582c1e9a1cd2ce1ee519f680cafcf2ce21e847d176185ab41eae03df04c37feb307b7c24cab13d8941b32485d3ca3bf048012bae76d3e05785
7
+ data.tar.gz: 547978935df291a82c4af3e7786697e78cd9406a7199e4a4e80a38b216b263806b61ae0b72ed9e61dec1e5bd87fd4d2cc8baf4c8c065899a0e31c7f353d41642
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## 4.3.4
7
+ - Fix "undefined method `build_rb_world_factory` for nil:NilClass" error when running tests on a real project'
8
+ - The field error class couldn't be required in certain circumstances and so the specs failed
9
+
6
10
  ## 4.3.3
7
11
  - Fixes that the `Spreewald.field_error_class` configuration
8
12
  did not find the correct elements
@@ -12,7 +16,14 @@ did not find the correct elements
12
16
  - `The ... field should have the error ...`
13
17
  - `The ... field should have an error`
14
18
  - Added the possibility to specify custom error classes and message selectors for these steps
15
- using `Spreewald.field_error_class` and `Spreewald.error_message_xpath_selector` in your configuration.
19
+ using `Spreewald.field_error_class` and `Spreewald.error_message_xpath_selector` in your configuration.
20
+
21
+ - We had separate steps for e.g. `I should see ...` and `I should not see ...`. These were merged now:
22
+ - `I should see "..."` + `I should not see "..."` => `I should( not)? see "..."`
23
+ - `I should see /.../` + `I should not see /.../` => `I should( not)? see /.../`
24
+ - `I should see '...'` + `I should not see '...'` => `I should( not)? see '...'`
25
+ - Optional negation was made more consistent. The steps use `"( not)? "` now.
26
+ - The search via `spreewald some query here` includes steps with optional negation now.
16
27
 
17
28
  ## 4.2.2
18
29
  - Fixes the "Show me the email" step (#171)
data/lib/spreewald.rb CHANGED
@@ -1,7 +1,6 @@
1
1
  # coding: UTF-8
2
2
 
3
3
  require 'cucumber_priority'
4
- require "spreewald_support/field_errors"
5
4
  require "spreewald_support/version"
6
5
  require "spreewald_support/github"
7
6
  require "spreewald_support/unsupported_email_header"
@@ -1,3 +1,3 @@
1
1
  module Spreewald
2
- VERSION = '4.3.3'
2
+ VERSION = '4.3.4'
3
3
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- spreewald (4.3.3)
4
+ spreewald (4.3.4)
5
5
  cucumber
6
6
  cucumber_priority (>= 0.3.0)
7
7
  rspec (>= 2.13.0)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spreewald
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.3
4
+ version: 4.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-26 00:00:00.000000000 Z
11
+ date: 2021-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber