8000 Modernize gem. · socketry/async-websocket@3afb243 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3afb243

Browse files
committed
Modernize gem.
1 parent 000e68e commit 3afb243

File tree

15 files changed

+17
-14
lines changed

15 files changed

+17
-14
lines changed

.github/workflows/documentation.yaml

Lines changed: 2 additions & 2 deletions
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

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ Aurora Nockert <aurora@aventine.se>
33
Thomas Morgan <tm@iprog.com>
44
Peter Runich <43861241+PeterRunich@users.noreply.github.com>
55
Simon Crocker <simon@stumpedlyfe.com> <destructobeam@stumpedlyfe.com>
6+
Ryu Sato <ryu@weseek.co.jp>

async-websocket.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 = Async::WebSocket::VERSION
88

99
spec.summary = "An async websocket library on top of protocol-websocket."
10-
spec.authors = ["Samuel Williams", "Simon Crocker", "Olle Jonsson", "Thomas Morgan", "Aurora Nockert", "Bryan Powell", "Emily Love Mills", "Gleb Sinyavskiy", "Janko Marohnić", "Juan Antonio Martín Lucas", "Michel Boaventura", "Peter Runich"]
10+
spec.authors = ["Samuel Williams", "Simon Crocker", "Olle Jonsson", "Thomas Morgan", "Aurora Nockert", "Bryan Powell", "Emily Love Mills", "Gleb Sinyavskiy", "Janko Marohnić", "Juan Antonio Martín Lucas", "Michel Boaventura", "Peter Runich", "Ryu Sato"]
1111
spec.license = "MIT"
1212

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

examples/binance/client.rb

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

44
# Released under the MIT License.
5-
# Copyright, 2021-2022, by Samuel Williams.
5+
# Copyright, 2021-2024, by Samuel Williams.
66

77
require 'async'
88
require 'async/http'

examples/rack/client.rb

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

44
# Released under the MIT License.
5-
# Copyright, 2019-2022, by Samuel Williams.
5+
# Copyright, 2019-2024, by Samuel Williams.
66

77
require 'async'
88
require 'async/http/endpoint'

examples/rack/gems.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, 2022, by Samuel Williams.
4+
# Copyright, 2022-2024, by Samuel Williams.
55

66
source "https://rubygems.org"
77

fixtures/async/websocket/rack_application.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, 2022, by Samuel Williams.
4+
# Copyright, 2022-2024, by Samuel Williams.
55

66
require 'sus/fixtures/async/http/server_context'
77
require 'protocol/rack/adapter'

lib/async/websocket/client.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, 2015-2023, by Samuel Williams.
4+
# Copyright, 2015-2024, by Samuel Williams.
55
# Copyright, 2019, by Bryan Powell.
66
# Copyright, 2019, by Janko Marohnić.
77
# Copyright, 2023, by Thomas Morgan.

lib/async/websocket/server.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
# Copyright, 2019, by Simon Crocker.
66

77
require_relative 'connection'

lib/async/websocket/upgrade_request.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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.
6+
# Copyright, 2024, by Ryu Sato.
67

78
require 'protocol/http/middleware'
89
require 'protocol/http/request'

lib/async/websocket/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 Async
77
module WebSocket

license.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Copyright, 2021, by Aurora Nockert.
1212
Copyright, 2023, by Peter Runich.
1313
Copyright, 2023, by Thomas Morgan.
1414
Copyright, 2023, by Emily Love Mills.
15+
Copyright, 2024, by Ryu Sato.
1516

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

test/async/websocket/adapters/rack.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, 2015-2023, by Samuel Williams.
4+
# Copyright, 2015-2024, by Samuel Williams.
55
# Copyright, 2019, by Simon Crocker.
66

77
require 'async/websocket'

test/async/websocket/connection.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, 2015-2023, by Samuel Williams.
4+
# Copyright, 2015-2024, by Samuel Williams.
55
# Copyright, 2019, by Simon Crocker.
66

77
require 'async/websocket/connection'

test/async/websocket/server.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/http/middleware/builder'
77

0 commit comments

Comments
 (0)
0