Skip to content

Commit 358834f

Browse files
authored
Merge branch 'master' into feature/fuubar
2 parents 50f666b + 1931edc commit 358834f

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
rspec-minor-versions: [6, 7, 8, 9, 10, 11, 12, 13]
23-
ruby-versions: ["3.1", "3.2", "3.3"]
23+
ruby-versions: ["3.1", "3.2", "3.3", "3.4"]
2424
env:
2525
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rspec_3.${{ matrix.rspec-minor-versions }}.gemfile
2626

features/rspec.feature

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ Feature: rspec task
2828
"""
2929
And the output contains the following:
3030
"""
31-
# ./spec/spec_spec.rb:2:in `block (2 levels) in <top (required)>'
31+
# ./spec/spec_spec.rb:2:in
32+
"""
33+
And the output contains the following:
34+
"""
35+
block (2 levels) in <top (required)>'
3236
"""
3337

3438
Scenario: it behaves like

flatware-cucumber.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
2020
)
2121
s.homepage = 'http://github.com/briandunn/flatware'
2222
s.licenses = ['MIT']
23-
s.required_ruby_version = ['>= 2.6', '< 3.4']
23+
s.required_ruby_version = ['>= 2.6', '< 3.5']
2424
s.require_paths = ['lib']
2525
s.add_dependency %(cucumber), '~> 3.0'
2626
s.add_dependency %(flatware), Flatware::VERSION

flatware-rspec.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
2121
)
2222
s.homepage = 'http://github.com/briandunn/flatware'
2323
s.licenses = ['MIT']
24-
s.required_ruby_version = ['>= 2.6', '< 3.4']
24+
s.required_ruby_version = ['>= 2.6', '< 3.5']
2525
s.require_paths = ['lib']
2626
s.add_dependency %(flatware), Flatware::VERSION
2727
s.add_dependency %(fuubar), '>= 2.5'

flatware.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
2626
s.homepage = 'http://github.com/briandunn/flatware'
2727

2828
s.licenses = ['MIT']
29-
s.required_ruby_version = ['>= 2.6', '< 3.4']
29+
s.required_ruby_version = ['>= 2.6', '< 3.5']
3030
s.require_paths = ['lib']
3131
s.executables = ['flatware']
3232
s.add_dependency %(drb)

0 commit comments

Comments
 (0)