Skip to content

Commit 2c8e8e6

Browse files
authored
Merge pull request #16 from voxik/ruby-3.4
Add Ruby 3.4 and head into test matrix
2 parents ab20d0c + e1a88e4 commit 2c8e8e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
ruby-version: ['2.5', '3.0', '3.1', '3.2', '3.3']
19+
ruby-version: ['2.5', '3.0', '3.1', '3.2', '3.3', '3.4', 'head']
2020

2121
steps:
2222
- uses: actions/checkout@v4

spec/abrt_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
describe 'ABRT' do
44
context "handles exception in 'abrt.rb' with RubyGems" do
55
abrt_rb = File.join(File.dirname(__FILE__), '../lib/abrt.rb')
6-
output_message_pattern = /\A#{abrt_rb}:\d+:in `<main>': can't modify frozen Array(: \[1, 2, 3\])? \((FrozenError|RuntimeError)\)\n\Z/
6+
output_message_pattern = /\A#{abrt_rb}:\d+:in [`']<main>': can't modify frozen Array(: \[1, 2, 3\])? \((FrozenError|RuntimeError)\)\n\Z/
77

88
it 'disabled' do
99
expect { system "ruby --disable-gems #{abrt_rb}" }

0 commit comments

Comments
 (0)