Skip to content

Commit c53d2ae

Browse files
authored
Merge branch 'main' into sentinel-client-protocol
2 parents fe6686d + a363147 commit c53d2ae

29 files changed

+519
-232
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ root = true
33
[*]
44
indent_style = tab
55
indent_size = 2
6+
7+
[*.{yml,yaml}]
8+
indent_style = space
9+
indent_size = 2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Documentation Coverage
2+
3+
on: [push, pull_request]
4+
5+
permissions:
6+
contents: read
7+
8+
env:
9+
CONSOLE_OUTPUT: XTerm
10+
COVERAGE: PartialSummary
11+
12+
jobs:
13+
validate:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: ruby/setup-ruby@v1
19+
with:
20+
ruby-version: "3.3"
21+
bundler-cache: true
22+
23+
- name: Validate coverage
24+
timeout-minutes: 5
25+
run: bundle exec bake decode:index:coverage lib

.github/workflows/documentation.yaml

+4-7
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
@@ -28,11 +25,11 @@ jobs:
2825
runs-on: ubuntu-latest
2926

3027
steps:
31-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
3229

3330
- uses: ruby/setup-ruby@v1
3431
with:
35-
ruby-version: "3.2"
32+
ruby-version: "3.3"
3633
bundler-cache: true
3734

3835
- name: Installing packages
@@ -43,7 +40,7 @@ jobs:
4340
run: bundle exec bake utopia:project:static --force no
4441

4542
- name: Upload documentation artifact
46-
uses: actions/upload-pages-artifact@v1
43+
uses: actions/upload-pages-artifact@v3
4744
with:
4845
path: docs
4946

@@ -58,4 +55,4 @@ jobs:
5855
steps:
5956
- name: Deploy to GitHub Pages
6057
id: deployment
61-
uses: actions/deploy-pages@v1
58+
uses: actions/deploy-pages@v4

.github/workflows/rubocop.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: RuboCop
2+
3+
on: [push, pull_request]
4+
5+
permissions:
6+
contents: read
7+
8+
env:
9+
CONSOLE_OUTPUT: XTerm
10+
11+
jobs:
12+
check:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: ruby/setup-ruby@v1
18+
with:
19+
ruby-version: ruby
20+
bundler-cache: true
21+
22+
- name: Run RuboCop
23+
timeout-minutes: 10
24+
run: bundle exec rubocop

.github/workflows/coverage.yaml .github/workflows/test-coverage.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Coverage
1+
name: Test Coverage
22

33
on: [push, pull_request]
44

@@ -31,10 +31,10 @@ jobs:
3131
- ubuntu
3232

3333
ruby:
34-
- "3.2"
34+
- "3.3"
3535

3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3838
- uses: ruby/setup-ruby@v1
3939
with:
4040
ruby-version: ${{matrix.ruby}}
@@ -43,8 +43,8 @@ jobs:
4343
- name: Run tests
4444
timeout-minutes: 5
4545
run: bundle exec bake test
46-
47-
- uses: actions/upload-artifact@v2
46+
47+
- uses: actions/upload-artifact@v3
4848
with:
4949
name: coverage-${{matrix.os}}-${{matrix.ruby}}
5050
path: .covered.db
@@ -54,10 +54,10 @@ jobs:
5454
runs-on: ubuntu-latest
5555

5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
- uses: ruby/setup-ruby@v1
5959
with:
60-
ruby-version: "3.2"
60+
ruby-version: "3.3"
6161
bundler-cache: true
6262

6363
- uses: actions/download-artifact@v3

.github/workflows/test-external.yaml

-36
This file was deleted.

.github/workflows/test.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ jobs:
3131
- ubuntu
3232

3333
ruby:
34-
- "2.7"
35-
- "3.0"
3634
- "3.1"
3735
- "3.2"
36+
- "3.3"
3837

3938
experimental: [false]
4039

@@ -50,7 +49,7 @@ jobs:
5049
experimental: true
5150

5251
steps:
53-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5453
- uses: ruby/setup-ruby@v1
5554
with:
5655
ruby-version: ${{matrix.ruby}}

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
/.covered.db
55
/external
66

7-
/dump.rdb
7+
/.github/workflows/test-external.yaml
8+
/dump.rdb

.rubocop.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
AllCops:
2+
DisabledByDefault: true
3+
4+
Layout/IndentationStyle:
5+
Enabled: true
6+
EnforcedStyle: tabs
7+
8+
Layout/InitialIndentation:
9+
Enabled: true
10+
11+
Layout/IndentationWidth:
12+
Enabled: true
13+
Width: 1
14+
15+
Layout/IndentationConsistency:
16+
Enabled: true
17+
EnforcedStyle: normal
18+
19+
Layout/BlockAlignment:
20+
Enabled: true
21+
22+
Layout/EndAlignment:
23+
Enabled: true
24+
EnforcedStyleAlignWith: start_of_line
25+
26+
Layout/BeginEndAlignment:
27+
Enabled: true
28+
EnforcedStyleAlignWith: start_of_line
29+
30+
Layout/ElseAlignment:
31+
Enabled: true
32+
33+
Layout/DefEndAlignment:
34+
Enabled: true
35+
36+
Layout/CaseIndentation:
37+
Enabled: true
38+
39+
Layout/CommentIndentation:
40+
Enabled: true
41+
42+
Layout/EmptyLinesAroundClassBody:
43+
Enabled: true
44+
45+
Layout/EmptyLinesAroundModuleBody:
46+
Enabled: true
47+
48+
Style/FrozenStringLiteralComment:
49+
Enabled: true

async-redis.gemspec

+11-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,18 @@ Gem::Specification.new do |spec|
1515

1616
spec.homepage = "https://github.com/socketry/async-redis"
1717

18+
spec.metadata = {
19+
"documentation_uri" => "https://socketry.github.io/async-redis/",
20+
"source_code_uri" => "https://github.com/socketry/async-redis.git",
21+
}
22+
1823
spec.files = Dir.glob(['{lib}/**/*', '*.md'], File::FNM_DOTMATCH, base: __dir__)
1924

20-
spec.add_dependency "async", [">= 1.8", "< 3.0"]
21-
spec.add_dependency "async-io", "~> 1.10"
25+
spec.required_ruby_version = ">= 3.1"
26+
27+
spec.add_dependency "async", "~> 2.10"
2228
spec.add_dependency "async-pool", "~> 0.2"
23-
spec.add_dependency "protocol-redis", "~> 0.8.0"
29+
spec.add_dependency "io-endpoint", "~> 0.10"
30+
spec.add_dependency "io-stream", "~> 0.4"
31+
spec.add_dependency "protocol-redis", "~> 0.9"
2432
end

benchmark/performance.rb

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

33
# Released under the MIT License.
44
# Copyright, 2019, by Pierre Montelle.
5-
# Copyright, 2019-2023, by Samuel Williams.
5+
# Copyright, 2019-2024, by Samuel Williams.
66
# Copyright, 2019, by David Ortiz.
77

88
require 'async/redis'
@@ -25,7 +25,9 @@
2525
key = keys.sample
2626
value = times.to_s
2727

28-
i = 0; while i < times; i += 1
28+
i = 0
29+
while i < times
30+
i += 1
2931
async_client.set(key, value)
3032
end
3133
end
@@ -37,7 +39,9 @@
3739
async_client.pipeline do |pipeline|
3840
sync = pipeline.sync
3941

40-
i = 0; while i < times; i += 1
42+
i = 0
43+
while i < times
44+
i += 1
4145
pipeline.set(key, value)
4246
end
4347
end
@@ -47,7 +51,9 @@
4751
key = keys.sample
4852
value = times.to_s
4953

50-
i = 0; while i < times; i += 1
54+
i = 0
55+
while i < times
56+
i += 1
5157
redis_client.set(key, value)
5258
end
5359
end
@@ -56,7 +62,9 @@
5662
key = keys.sample
5763
value = times.to_s
5864

59-
i = 0; while i < times; i += 1
65+
i = 0
66+
while i < times
67+
i += 1
6068
redis_client_hiredis.set(key, value)
6169
end
6270
end

examples/auth/wrapper.rb

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

33
# Released under the MIT License.
44
# Copyright, 2021, by Troex Nevelin.
5-
# Copyright, 2023, by Samuel Williams.
5+
# Copyright, 2023-2024, by Samuel Williams.
66

77
require_relative '../../lib/async/redis'
88

@@ -32,16 +32,16 @@ def call(url = 'redis://localhost:6379', ssl_params: nil, **options)
3232

3333
# @param uri [URI]
3434
# @param ssl_params [Hash]
35-
# @return [Async::IO::Endpoint]
35+
# @return [::IO::Endpoint::Generic]
3636
def prepare_endpoint(uri, ssl_params = nil)
37-
tcp_endpoint = Async::IO::Endpoint.tcp(uri.hostname, uri.port)
37+
tcp_endpoint = ::IO::Endpoint.tcp(uri.hostname, uri.port)
3838
case uri.scheme
3939
when 'redis'
4040
tcp_endpoint
4141
when 'rediss'
4242
ssl_context = OpenSSL::SSL::SSLContext.new
4343
ssl_context.set_params(ssl_params) if ssl_params
44-
Async::IO::SSLEndpoint.new(tcp_endpoint, ssl_context: ssl_context)
44+
::IO::SSLEndpoint.new(tcp_endpoint, ssl_context: ssl_context)
4545
else
4646
raise ArgumentError
4747
end

fixtures/client_context.rb

+4-5
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, 2023, by Samuel Williams.
4+
# Copyright, 2018, by Huba Nagy.
5+
# Copyright, 2018-2024, by Samuel Williams.
56

67
require 'async/redis'
78
require 'async/redis/client'
@@ -19,14 +20,12 @@
1920

2021
let(:root) {Async::Redis::Key["async-redis:test:#{SecureRandom.uuid}"]}
2122

22-
def before
23-
super
23+
before do
2424
keys = client.keys("#{root}:*")
2525
client.del(*keys) if keys.any?
2626
end
2727

28-
def after
28+
after do
2929
@client&.close
30-
super
3130
end
3231
end

0 commit comments

Comments
 (0)