cucumber-rails 4.0.0 → 4.0.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/cucumber/rails.rb +0 -10
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b997c682ab7d9df313328345648b46639ed0c36b478e5001f7f67bd159e6e633
|
|
4
|
+
data.tar.gz: 1d29a68610d199277df12aeda2fc71a6682b92bb119613d27d7f6c534233f2d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6654fc0f18052504367a4ed9604cfbbf91aef6f61768db9840ae8bf7a60254d814acdcc4f3ec3f8c9e4c34cae814936c01bc8e7d5e68a0e964fe36fd92dfa7d
|
|
7
|
+
data.tar.gz: 64b75d22fea57922181c41818ab64a002687fdf934e4f57f8d7d758a9ecd07f61c8a92d24c6f1c9a26005179ece67bdaa66cd8352529406696ef4a2bf43c1fb0
|
data/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,10 @@ This file is intended to be modified using the [`changelog`](https://github.com/
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [4.0.1] - 2026-03-10
|
|
13
|
+
### Removed
|
|
14
|
+
- Stop printing a warning about `config.cache_classes` being set to `false`
|
|
15
|
+
|
|
12
16
|
## [4.0.0] - 2025-09-01
|
|
13
17
|
### Changed
|
|
14
18
|
- In-line with minimum ruby / rails, a lot of internal non-breaking refactors have been done to remove legacy code
|
|
@@ -66,7 +70,8 @@ This file is intended to be modified using the [`changelog`](https://github.com/
|
|
|
66
70
|
- Fixed up some rubocop offenses from updated `rubocop-performance`
|
|
67
71
|
([#550](https://github.com/cucumber/cucumber-rails/pull/550) [olleolleolle](https://github.com/olleolleolle))
|
|
68
72
|
|
|
69
|
-
[Unreleased]: https://github.com/cucumber/cucumber-rails/compare/v4.0.
|
|
73
|
+
[Unreleased]: https://github.com/cucumber/cucumber-rails/compare/v4.0.1...HEAD
|
|
74
|
+
[4.0.1]: https://github.com/cucumber/cucumber-rails/compare/v4.0.0...v4.0.1
|
|
70
75
|
[4.0.0]: https://github.com/cucumber/cucumber-rails/compare/v3.1.1...v4.0.0
|
|
71
76
|
[3.1.1]: https://github.com/cucumber/cucumber-rails/compare/v3.1.0...v3.1.1
|
|
72
77
|
[3.1.0]: https://github.com/cucumber/cucumber-rails/compare/v3.0.1...v3.1.0
|
data/lib/cucumber/rails.rb
CHANGED
|
@@ -12,16 +12,6 @@ if called_from_env_rb
|
|
|
12
12
|
require File.expand_path("#{ENV.fetch('RAILS_ROOT')}/config/environment")
|
|
13
13
|
require 'cucumber/rails/action_dispatch'
|
|
14
14
|
require 'rails/test_help'
|
|
15
|
-
|
|
16
|
-
unless Rails.application.config.cache_classes || defined?(Spring)
|
|
17
|
-
warn <<~MESSAGE
|
|
18
|
-
WARNING: You have set Rails' config.cache_classes to false (Spring needs cache_classes set to false).
|
|
19
|
-
This is known to cause problems with database transactions.
|
|
20
|
-
|
|
21
|
-
Set config.cache_classes to true if you want to use transactions.
|
|
22
|
-
MESSAGE
|
|
23
|
-
end
|
|
24
|
-
|
|
25
15
|
require 'cucumber/rails/world'
|
|
26
16
|
require 'cucumber/rails/hooks'
|
|
27
17
|
require 'cucumber/rails/capybara'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cucumber-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aslak Hellesøy
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date:
|
|
14
|
+
date: 2026-03-10 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: capybara
|
|
@@ -321,10 +321,10 @@ licenses:
|
|
|
321
321
|
- MIT
|
|
322
322
|
metadata:
|
|
323
323
|
bug_tracker_uri: https://github.com/cucumber/cucumber-rails/issues
|
|
324
|
-
changelog_uri: https://github.com/cucumber/cucumber-rails/blob/v4.0.
|
|
324
|
+
changelog_uri: https://github.com/cucumber/cucumber-rails/blob/v4.0.1/CHANGELOG.md
|
|
325
325
|
documentation_uri: https://cucumber.io/docs
|
|
326
326
|
mailing_list_uri: https://groups.google.com/forum/#!forum/cukes
|
|
327
|
-
source_code_uri: https://github.com/cucumber/cucumber-rails/tree/v4.0.
|
|
327
|
+
source_code_uri: https://github.com/cucumber/cucumber-rails/tree/v4.0.1
|
|
328
328
|
post_install_message:
|
|
329
329
|
rdoc_options: []
|
|
330
330
|
require_paths:
|
|
@@ -343,5 +343,5 @@ requirements: []
|
|
|
343
343
|
rubygems_version: 3.4.20
|
|
344
344
|
signing_key:
|
|
345
345
|
specification_version: 4
|
|
346
|
-
summary: cucumber-rails-4.0.
|
|
346
|
+
summary: cucumber-rails-4.0.1
|
|
347
347
|
test_files: []
|