cucumber-rails 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +22 -18
  3. data/CONTRIBUTING.md +1 -1
  4. data/LICENSE +18 -18
  5. data/README.md +4 -4
  6. metadata +9 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1bf83d6e575787713fab1c816923720383b3564cbd768456937e2f3480480f9
4
- data.tar.gz: 8842142b452e0f6459ba648ac31ded1daa634c2e7eff71fb2be540fe6f121e58
3
+ metadata.gz: 3d28c9633053018eed561128c1d65a443723506877bbcefe50d841f583f0881b
4
+ data.tar.gz: 03f762a8f2a60d0eef536de11c9ecd9db97b4d21ccb4b3394525f21758589cf8
5
5
  SHA512:
6
- metadata.gz: 302a10f9a375ec89ecf7a56f25b0e3261c712b4fd59c2f6ee0e98b4dc7e0119792c9b6072f832d9a8d70ff97d6692bc225b7ef351adae1f051b6ba2f9a0b182c
7
- data.tar.gz: 805277ab925431c22f0e8be3ae0c0769b10b1afd9ce0d5bb66e43feb9c93558128feda07cde8c0a3140a97408fbad9e7f3a016c73432bbb390304bf76fb9ab1e
6
+ metadata.gz: 4e47b1dec5b676f10f8b9355099363f67c4f443ffbbcfa4ec10e90089e5de4b7793a53c7e4131424b9316a4abe6a5efcfae905ee375204e78c3517226be13718
7
+ data.tar.gz: 3411299181e9d5035a5f272b2ee6a71b213fc3b4f9818505a79810dcda16e64ccec70b4cd9e3d0133f93de57e30a37440e61ed999cdb550245606d3cf91f28e9
data/CHANGELOG.md CHANGED
@@ -5,22 +5,31 @@ All notable changes to this project will be documented in this file. For older v
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- This file is intended to be modified using the [`changelog`](github.com/cucumber/changelog) command-line tool.
8
+ This file is intended to be modified using the [`changelog`](https://github.com/cucumber/changelog) command-line tool.
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [3.1.0] - 2024-11-25
13
+
14
+ ## [3.0.1] - 2024-11-05
15
+ ### Changed
16
+ - Add support for Rails 7.2 / Ruby 3.3 (No code changes required) [#586](https://github.com/cucumber/cucumber-rails/pull/586) [#588](https://github.com/cucumber/cucumber-rails/pull/588)
17
+
18
+ ### Fixed
19
+ - Internal testing code has been refactored to handle older ruby/rails installs [#583](https://github.com/cucumber/cucumber-rails/pull/583)
20
+
12
21
  ## [3.0.0] - 2023-11-01
13
22
  ### Changed
14
23
  - Add support for Rails 7.1 [#575](https://github.com/cucumber/cucumber-rails/pull/575)
15
24
  - Added new rubocop sub-gems (rails / rake) and updated repo to be rubocop 2.6 conformant [#581](https://github.com/cucumber/cucumber-rails/pull/581)
16
25
 
17
26
  ### Fixed
18
- - Some of the rails 5.2 tests were installing lots of old conflicting gems ([luke-hill])
27
+ - Some of the rails 5.2 tests were installing lots of old conflicting gems ([luke-hill](https://github.com/luke-hill))
19
28
  - Generator updates (Updated the install locations for some scripts from `script/` to `bin/` and remove some legacy items)
20
- ([luke-hill])
29
+ ([luke-hill](https://github.com/luke-hill))
21
30
  - Update minimum versions of several gems: capybara must be `v3.11+` and cucumber must be `v5+` (cucumber v9 is also permissible)
22
- ([luke-hill])
23
- - Fixed an issue where the World instantiation didn't re-run the inherited classes initializer ([luke-hill])
31
+ ([luke-hill](https://github.com/luke-hill))
32
+ - Fixed an issue where the World instantiation didn't re-run the inherited classes initializer ([luke-hill](https://github.com/luke-hill))
24
33
 
25
34
  ## [3.0.0.rc.1] - 2023-09-15
26
35
  ### Removed
@@ -33,29 +42,24 @@ This file is intended to be modified using the [`changelog`](github.com/cucumber
33
42
  - Automate release process [#554](https://github.com/cucumber/cucumber-rails/pull/554)
34
43
 
35
44
  ## [2.6.0] - 2022-10-07
36
- ### New Features
37
- - Dependabot has now been added to the repo (Alongside this a bunch of gem updates have been done)
38
- ([#540](https://github.com/cucumber/cucumber-rails/pull/540) [mattwynne])
39
-
40
45
  ### Changed
41
- - Gem update: allowed cucumber 8 ([#538](https://github.com/cucumber/cucumber-rails/pull/538) / [#541](https://github.com/cucumber/cucumber-rails/pull/541) [mattwynne])
46
+ - Gem update: allowed cucumber 8 ([#538](https://github.com/cucumber/cucumber-rails/pull/538) / [#541](https://github.com/cucumber/cucumber-rails/pull/541) [mattwynne](https://github.com/mattwynne))
42
47
  - New release process. Older releases are in [this changelog](./CHANGELOG.old.md)
43
48
 
44
49
  ### Fixed
45
50
  - Some bugs with dev dependencies have now been fixed externally, so these have been unrestricted
46
- ([#552](https://github.com/cucumber/cucumber-rails/pull/552) [BrianHawley])
47
-
51
+ ([#552](https://github.com/cucumber/cucumber-rails/pull/552) [BrianHawley](https://github.com/BrianHawley))
48
52
  - Fixed up some rubocop offenses from updated `rubocop-performance`
49
- ([#550](https://github.com/cucumber/cucumber-rails/pull/550) [olleolleolle])
53
+ ([#550](https://github.com/cucumber/cucumber-rails/pull/550) [olleolleolle](https://github.com/olleolleolle))
50
54
 
51
- [Unreleased]: https://github.com/cucumber/cucumber-rails/compare/v3.0.0...HEAD
55
+ [Unreleased]: https://github.com/cucumber/cucumber-rails/compare/v3.1.0...HEAD
56
+ [3.1.0]: https://github.com/cucumber/cucumber-rails/compare/v3.0.1...v3.1.0
57
+ [3.0.1]: https://github.com/cucumber/cucumber-rails/compare/v3.0.0...v3.0.1
52
58
  [3.0.0]: https://github.com/cucumber/cucumber-rails/compare/v3.0.0.rc.1...v3.0.0
53
59
  [3.0.0.rc.1]: https://github.com/cucumber/cucumber-rails/compare/v2.6.1...v3.0.0.rc.1
54
60
  [2.6.1]: https://github.com/cucumber/cucumber-rails/compare/v2.6.0...v2.6.1
55
61
  [2.6.0]: https://github.com/cucumber/cucumber-rails/compare/v2.5.1...v2.6.0
56
-
57
- [olleolleolle]: https://github.com/olleolleolle
58
- [BrianHawley]: https://github.com/BrianHawley
59
- [mattwynne]: https://github.com/mattwynne
62
+ 2.5.1...v2.6.0
63
+ //github.com/mattwynne
60
64
  [orien]: https://github.com/orien
61
65
  [luke-hill]: https://github.com/luke-hill
data/CONTRIBUTING.md CHANGED
@@ -46,7 +46,7 @@ If you've changed versions of the dependencies, you may find it helpful to force
46
46
  each appraisal's gem lock file in `gemfiles/`. You can do this using:
47
47
 
48
48
  [bundle exec] rake gemfiles:clean
49
-
49
+
50
50
  ## Release Process
51
51
 
52
52
  We now use polyglot-release. Consult [RELEASING.md](./RELEASING.md) for more info
data/LICENSE CHANGED
@@ -1,22 +1,22 @@
1
- The MIT License
1
+ MIT License
2
2
 
3
- Copyright (c) 2008-2024 Aslak Hellesøy and the Cucumber Team.
3
+ Copyright (c) 2008 Aslak Hellesøy and contributors
4
+ Copyright (c) 2013 Cucumber Ltd and contributors
4
5
 
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
12
 
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
15
 
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![Code Climate](https://codeclimate.com/github/cucumber/cucumber-rails.svg)](https://codeclimate.com/github/cucumber/cucumber-rails)
6
6
  [![Open Source Helpers](https://www.codetriage.com/cucumber/cucumber-rails/badges/users.svg)](https://www.codetriage.com/cucumber/cucumber-rails)
7
7
 
8
- Cucumber-Rails brings Cucumber to Rails 5.2, 6.x and 7.x.
8
+ Cucumber-Rails brings Cucumber to Rails 5.2, 6.x, 7.x, and 8.x.
9
9
 
10
10
  ## Installation
11
11
 
@@ -95,8 +95,8 @@ With all dependencies installed, all specs and features should pass:
95
95
 
96
96
  In order to test against multiple versions of key dependencies, the [Appraisal](https://github.com/thoughtbot/appraisal)
97
97
  gem is used to generate multiple gemfiles, stored in the `gemfiles/` directory.
98
- Normally these will only run on Travis; however, if you want to run the full test suite against
99
- all gemfiles, run the following commands:
98
+ Normally these will only run on GitHub via GitHub Actions; however if you want to run the full test
99
+ suite against all gemfiles, run the following commands:
100
100
 
101
101
  [bundle exec] appraisal install
102
102
  [bundle exec] appraisal rake test
@@ -115,4 +115,4 @@ To support the multiple-gemfile testing, when adding a new dependency the follow
115
115
 
116
116
  For example, rspec is a primary development dependency, so it lives in the gemspec.
117
117
 
118
- [the helper method]: https://github.com/cucumber/cucumber-rails/blob/main/features/support/cucumber_rails_helper.rb#L19
118
+ [the helper method]: ./features/support/cucumber_rails_gem_helper.rb
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: 3.0.0
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aslak Hellesøy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-11-01 00:00:00.000000000 Z
13
+ date: 2024-11-25 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: capybara
@@ -61,7 +61,7 @@ dependencies:
61
61
  version: '5.2'
62
62
  - - "<"
63
63
  - !ruby/object:Gem::Version
64
- version: '8'
64
+ version: '9'
65
65
  type: :runtime
66
66
  prerelease: false
67
67
  version_requirements: !ruby/object:Gem::Requirement
@@ -71,7 +71,7 @@ dependencies:
71
71
  version: '5.2'
72
72
  - - "<"
73
73
  - !ruby/object:Gem::Version
74
- version: '8'
74
+ version: '9'
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: ammeter
77
77
  requirement: !ruby/object:Gem::Requirement
@@ -155,7 +155,7 @@ dependencies:
155
155
  version: '5.2'
156
156
  - - "<"
157
157
  - !ruby/object:Gem::Version
158
- version: '8'
158
+ version: '9'
159
159
  type: :development
160
160
  prerelease: false
161
161
  version_requirements: !ruby/object:Gem::Requirement
@@ -165,7 +165,7 @@ dependencies:
165
165
  version: '5.2'
166
166
  - - "<"
167
167
  - !ruby/object:Gem::Version
168
- version: '8'
168
+ version: '9'
169
169
  - !ruby/object:Gem::Dependency
170
170
  name: rake
171
171
  requirement: !ruby/object:Gem::Requirement
@@ -333,10 +333,10 @@ licenses:
333
333
  - MIT
334
334
  metadata:
335
335
  bug_tracker_uri: https://github.com/cucumber/cucumber-rails/issues
336
- changelog_uri: https://github.com/cucumber/cucumber-rails/blob/v3.0.0/CHANGELOG.md
336
+ changelog_uri: https://github.com/cucumber/cucumber-rails/blob/v3.1.0/CHANGELOG.md
337
337
  documentation_uri: https://cucumber.io/docs
338
338
  mailing_list_uri: https://groups.google.com/forum/#!forum/cukes
339
- source_code_uri: https://github.com/cucumber/cucumber-rails/tree/v3.0.0
339
+ source_code_uri: https://github.com/cucumber/cucumber-rails/tree/v3.1.0
340
340
  post_install_message:
341
341
  rdoc_options: []
342
342
  require_paths:
@@ -355,5 +355,5 @@ requirements: []
355
355
  rubygems_version: 3.3.5
356
356
  signing_key:
357
357
  specification_version: 4
358
- summary: cucumber-rails-3.0.0
358
+ summary: cucumber-rails-3.1.0
359
359
  test_files: []