Skip to content

Commit

Permalink
Modernize code.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Feb 1, 2025
1 parent 0e572b2 commit 35f549b
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
ruby-version: "3.4"
bundler-cache: true

- name: Validate coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
ruby-version: "3.4"
bundler-cache: true

- name: Installing packages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- macos

ruby:
- "3.3"
- "3.4"

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
ruby-version: "3.4"
bundler-cache: true

- uses: actions/download-artifact@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- "3.1"
- "3.2"
- "3.3"
- "3.4"

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ permissions:

env:
CONSOLE_OUTPUT: XTerm
TRACES_BACKEND: traces/backend/test

jobs:
test:
Expand All @@ -25,6 +24,7 @@ jobs:
- "3.1"
- "3.2"
- "3.3"
- "3.4"

experimental: [false]

Expand Down
2 changes: 1 addition & 1 deletion lib/protocol/http2/priority_update_frame.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2019-2024, by Samuel Williams.
# Copyright, 2024-2025, by Samuel Williams.

require_relative "frame"
require_relative "padded"
Expand Down
2 changes: 1 addition & 1 deletion lib/traces/provider/protocol/http2/framer.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2024, by Samuel Williams.
# Copyright, 2024-2025, by Samuel Williams.

require "traces/provider"
require_relative "../../../../protocol/http2/framer"
Expand Down
3 changes: 2 additions & 1 deletion license.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# MIT License

Copyright, 2019-2024, by Samuel Williams.
Copyright, 2019-2025, by Samuel Williams.
Copyright, 2019, by Yuta Iwama.
Copyright, 2020, by Olle Jonsson.
Copyright, 2023, by Marco Concetto Rudilosso.
Copyright, 2024, by Adam Petro.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion protocol-http2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.version = Protocol::HTTP2::VERSION

spec.summary = "A low level implementation of the HTTP/2 protocol."
spec.authors = ["Samuel Williams", "Yuta Iwama", "Marco Concetto Rudilosso", "Olle Jonsson"]
spec.authors = ["Samuel Williams", "Yuta Iwama", "Adam Petro", "Marco Concetto Rudilosso", "Olle Jonsson"]
spec.license = "MIT"

spec.cert_chain = ["release.cert"]
Expand Down
3 changes: 2 additions & 1 deletion test/protocol/http2/priority_update_frame.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2019-2024, by Samuel Williams.
# Copyright, 2024-2025, by Samuel Williams.

require "protocol/http2/priority_update_frame"

Expand Down

0 comments on commit 35f549b

Please sign in to comment.