Skip to content

Commit 2d4e6ef

Browse files
committed
Modernize gem.
1 parent 3d1f309 commit 2d4e6ef

File tree

8 files changed

+11
-10
lines changed

8 files changed

+11
-10
lines changed

.github/workflows/documentation.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
branches:
66
- main
77

8-
# Allows you to run this workflow manually from the Actions tab:
9-
workflow_dispatch:
10-
118
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages:
129
permissions:
1310
contents: read

lib/protocol/http/header/authorization.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
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.
5+
# Copyright, 2024, by Earlopain.
56

67
module Protocol
78
module HTTP

lib/protocol/http/header/connection.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
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.
5+
# Copyright, 2024, by Thomas Morgan.
56

67
require_relative 'split'
78

lib/protocol/http/header/date.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, 2023, by Samuel Williams.
4+
# Copyright, 2023-2024, by Samuel Williams.
55

66
require 'time'
77

lib/protocol/http/version.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, 2018-2023, by Samuel Williams.
4+
# Copyright, 2018-2024, by Samuel Williams.
55

66
module Protocol
77
module HTTP

license.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ Copyright, 2020-2023, by Bruno Sutic.
88
Copyright, 2022, by Herrick Fang.
99
Copyright, 2022, by Dan Olson.
1010
Copyright, 2023, by Genki Takiuchi.
11-
Copyright, 2023, by Thomas Morgan.
11+
Copyright, 2023-2024, by Thomas Morgan.
1212
Copyright, 2023, by Marcelo Junior.
13+
Copyright, 2024, by Earlopain.
1314

1415
Permission is hereby granted, free of charge, to any person obtaining a copy
1516
of this software and associated documentation files (the "Software"), to deal

protocol-http.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
77
spec.version = Protocol::HTTP::VERSION
88

99
spec.summary = "Provides abstractions to handle HTTP protocols."
10-
spec.authors = ["Samuel Williams", "Bruno Sutic", "Herrick Fang", "Thomas Morgan", "Bryan Powell", "Dan Olson", "Genki Takiuchi", "Marcelo Junior", "Olle Jonsson", "Yuta Iwama"]
10+
spec.authors = ["Samuel Williams", "Thomas Morgan", "Bruno Sutic", "Herrick Fang", "Bryan Powell", "Dan Olson", "Earlopain", "Genki Takiuchi", "Marcelo Junior", "Olle Jonsson", "Yuta Iwama"]
1111
spec.license = "MIT"
1212

1313
spec.cert_chain = ['release.cert']

test/protocol/http/header/connection.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
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.
5+
# Copyright, 2024, by Thomas Morgan.
56

67
require 'protocol/http/headers'
78
require 'protocol/http/cookie'

0 commit comments

Comments
 (0)