Skip to content

Commit c5abfbc

Browse files
committed
Modernize gem.
1 parent 93df4e7 commit c5abfbc

File tree

9 files changed

+11
-9
lines changed

9 files changed

+11
-9
lines changed

.github/workflows/test-coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
timeout-minutes: 5
3535
run: bundle exec bake test
3636

37-
- uses: actions/upload-artifact@v3
37+
- uses: actions/upload-artifact@v4
3838
with:
3939
name: coverage-${{matrix.os}}-${{matrix.ruby}}
4040
path: .covered.db
@@ -50,7 +50,7 @@ jobs:
5050
ruby-version: "3.3"
5151
bundler-cache: true
5252

53-
- uses: actions/download-artifact@v3
53+
- uses: actions/download-artifact@v4
5454

5555
- name: Validate coverage
5656
timeout-minutes: 5

lib/protocol/http1/body/chunked.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2019-2023, by Samuel Williams.
4+
# Copyright, 2019-2024, by Samuel Williams.
55
# Copyright, 2023, by Thomas Morgan.
66

77
require 'protocol/http/body/readable'

lib/protocol/http1/connection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright, 2019-2024, by Samuel Williams.
55
# Copyright, 2019, by Brian Morearty.
66
# Copyright, 2020, by Bruno Sutic.
7-
# Copyright, 2023, by Thomas Morgan.
7+
# Copyright, 2023-2024, by Thomas Morgan.
88
# Copyright, 2024, by Anton Zhuravsky.
99

1010
require 'protocol/http/headers'

license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Copyright, 2019-2024, by Samuel Williams.
44
Copyright, 2019, by Brian Morearty.
55
Copyright, 2020, by Olle Jonsson.
66
Copyright, 2020, by Bruno Sutic.
7-
Copyright, 2023, by Thomas Morgan.
7+
Copyright, 2023-2024, by Thomas Morgan.
88
Copyright, 2024, by Anton Zhuravsky.
99

1010
Permission is hereby granted, free of charge, to any person obtaining a copy

test/protocol/http1/body/chunked.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2019-2023, by Samuel Williams.
4+
# Copyright, 2019-2024, by Samuel Williams.
55

66
require 'protocol/http1/body/chunked'
77
require 'connection_context'

test/protocol/http1/body/fixed.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2019-2023, by Samuel Williams.
4+
# Copyright, 2019-2024, by Samuel Williams.
55

66
require 'protocol/http1/body/fixed'
77

test/protocol/http1/connection.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2019-2023, by Samuel Williams.
4+
# Copyright, 2019-2024, by Samuel Williams.
55
# Copyright, 2019, by Brian Morearty.
66
# Copyright, 2020, by Bruno Sutic.
7+
# Copyright, 2024, by Thomas Morgan.
78

89
require 'protocol/http1/connection'
910
require 'protocol/http/body/buffered'

test/protocol/http1/hijack.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Released under the MIT License.
44
# Copyright, 2019-2024, by Samuel Williams.
55
# Copyright, 2024, by Anton Zhuravsky.
6+
# Copyright, 2024, by Thomas Morgan.
67

78
require 'protocol/http1/connection'
89
require 'connection_context'

test/protocol/http1/upgrade.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2019-2023, by Samuel Williams.
4+
# Copyright, 2019-2024, by Samuel Williams.
55

66
require 'protocol/http1/connection'
77
require 'connection_context'

0 commit comments

Comments
 (0)