Skip to content

Commit f74a2d4

Browse files
authoredJan 14, 2025··
Merge pull request #939 from y-yagi/ci_against_ruby34
CI against Ruby 3.4
2 parents c4fa6cc + 4bd6472 commit f74a2d4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
ruby:
24+
- 3.4
2425
- 3.3
2526
- 3.2
2627
- 3.1

‎spec/draper/decorator_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ module Draper
451451
it "includes the context" do
452452
decorator = Decorator.new(double, context: {foo: "bar"})
453453

454-
expect(decorator.inspect).to include '@context={:foo=>"bar"}'
454+
expect(decorator.inspect).to include "@context=#{{foo: "bar"}}"
455455
end
456456

457457
it "includes other instance variables" do

0 commit comments

Comments
 (0)
Please sign in to comment.