Skip to content

Commit 63409fa

Browse files
committed
Modernize gem.
1 parent 80dcbbe commit 63409fa

File tree

13 files changed

+21
-10
lines changed

13 files changed

+21
-10
lines changed

.github/workflows/documentation.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: bundle exec bake utopia:project:static --force no
4141

4242
- name: Upload documentation artifact
43-
uses: actions/upload-pages-artifact@v2
43+
uses: actions/upload-pages-artifact@v3
4444
with:
4545
path: docs
4646

@@ -55,4 +55,4 @@ jobs:
5555
steps:
5656
- name: Deploy to GitHub Pages
5757
id: deployment
58-
uses: actions/deploy-pages@v3
58+
uses: actions/deploy-pages@v4

examples/delay/client.rb

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
4+
# Released under the MIT License.
5+
# Copyright, 2024, by Samuel Williams.
26

37
require "net/http"
48
require "async"

examples/hello/gems.rb

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# frozen_string_literal: true
2+
3+
# Released under the MIT License.
4+
# Copyright, 2024, by Samuel Williams.
5+
16
source "https://rubygems.org"
27

38
gem "async-http", path: "../../"

lib/async/http/endpoint.rb

+1
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, 2021-2022, by Adam Daniels.
6+
# Copyright, 2024, by Thomas Morgan.
67

78
require 'io/endpoint'
89
require 'io/endpoint/host_endpoint'

lib/async/http/protocol/http.rb

+1-1
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 Thomas Morgan.
4+
# Copyright, 2024, by Thomas Morgan.
55

66
require_relative 'http1'
77
require_relative 'http2'

lib/async/http/protocol/http1.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Released under the MIT License.
44
# Copyright, 2017-2024, by Samuel Williams.
5-
# Copyright, 2023, by Thomas Morgan.
5+
# Copyright, 2024, by Thomas Morgan.
66

77
require_relative 'http1/client'
88
require_relative 'http1/server'

lib/async/http/protocol/http10.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Released under the MIT License.
44
# Copyright, 2017-2024, by Samuel Williams.
5-
# Copyright, 2023, by Thomas Morgan.
5+
# Copyright, 2024, by Thomas Morgan.
66

77
require_relative 'http1'
88

lib/async/http/protocol/http11.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Released under the MIT License.
44
# Copyright, 2017-2024, by Samuel Williams.
55
# Copyright, 2018, by Janko Marohnić.
6-
# Copyright, 2023, by Thomas Morgan.
6+
# Copyright, 2024, by Thomas Morgan.
77

88
require_relative 'http1'
99

lib/async/http/protocol/http2.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Released under the MIT License.
44
# Copyright, 2018-2024, by Samuel Williams.
5-
# Copyright, 2023, by Thomas Morgan.
5+
# Copyright, 2024, by Thomas Morgan.
66

77
require_relative 'http2/client'
88
require_relative 'http2/server'

license.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Copyright, 2021-2022, by Adam Daniels.
1717
Copyright, 2022, by Ian Ker-Seymer.
1818
Copyright, 2022, by Marco Concetto Rudilosso.
1919
Copyright, 2022, by Tim Meusel.
20-
Copyright, 2023, by Thomas Morgan.
20+
Copyright, 2023-2024, by Thomas Morgan.
2121
Copyright, 2023, by dependabot[bot].
2222
Copyright, 2023, by Josh Huber.
2323
Copyright, 2024, by Anton Zhuravsky.

test/async/http/endpoint.rb

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Released under the MIT License.
44
# Copyright, 2018-2024, by Samuel Williams.
55
# Copyright, 2021-2022, by Adam Daniels.
6+
# Copyright, 2024, by Thomas Morgan.
67

78
require 'async/http/endpoint'
89

test/async/http/protocol/http.rb

+1-1
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 Thomas Morgan.
4+
# Copyright, 2024, by Thomas Morgan.
55

66
require 'async/http/protocol/http'
77
require 'async/http/a_protocol'

test/async/http/server.rb

+1-1
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, 2017-2024, by Samuel Williams.
4+
# Copyright, 2024, by Samuel Williams.
55

66
require 'async/http/server'
77
require 'async/http/endpoint'

0 commit comments

Comments
 (0)