Skip to content

Commit d378ef6

Browse files
committed
Modernize gem.
1 parent 475f300 commit d378ef6

29 files changed

+42
-52
lines changed

.github/workflows/coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- macos
2222

2323
ruby:
24-
- "3.1"
24+
- "3.2"
2525

2626
steps:
2727
- uses: actions/checkout@v3
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/checkout@v3
4848
- uses: ruby/setup-ruby@v1
4949
with:
50-
ruby-version: "3.1"
50+
ruby-version: "3.2"
5151
bundler-cache: true
5252

5353
- uses: actions/download-artifact@v3

.github/workflows/documentation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- uses: ruby/setup-ruby@v1
3434
with:
35-
ruby-version: "3.1"
35+
ruby-version: "3.2"
3636
bundler-cache: true
3737

3838
- name: Installing packages

.github/workflows/test-external.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- "2.7"
2424
- "3.0"
2525
- "3.1"
26+
- "3.2"
2627

2728
steps:
2829
- uses: actions/checkout@v3

.github/workflows/test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
- "2.7"
2525
- "3.0"
2626
- "3.1"
27+
- "3.2"
2728

2829
experimental: [false]
2930

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Juan Antonio Martín Lucas <[email protected]>
2+
Aurora Nockert <[email protected]>

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 websocket-driver."
10-
spec.authors = ["Samuel Williams", "destructobeam", "Olle Jonsson", "Aurora", "Bryan Powell", "Gleb Sinyavskiy", "Janko Marohnić", "Michel Boaventura", "jaml"]
10+
spec.authors = ["Samuel Williams", "destructobeam", "Olle Jonsson", "Aurora Nockert", "Bryan Powell", "Gleb Sinyavskiy", "Janko Marohnić", "Juan Antonio Martín Lucas", "Michel Boaventura"]
1111
spec.license = "MIT"
1212

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

examples/mud/client.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
# Released under the MIT License.
55
# Copyright, 2019-2022, by Samuel Williams.
6+
# Copyright, 2020, by Juan Antonio Martín Lucas.
67

78
require 'async'
89
require 'async/io/stream'

fixtures/rack_application/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, 2022, by Samuel Williams.
5+
# Copyright, 2018-2022, by Samuel Williams.
66

77
require 'async'
88
require 'async/io/stream'

fixtures/upgrade_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, 2019-2022, by Samuel Williams.
55

66
require 'async/websocket/adapters/rack'
77

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, 2020-2022, by Samuel Williams.
4+
# Copyright, 2015-2022, by Samuel Williams.
55

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

0 commit comments

Comments
 (0)