Skip to content

Commit 594da7e

Browse files
committed
rediscluster is now redis-clustering
1 parent cf4cffc commit 594da7e

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,4 @@ Bundler/OrderedGems:
151151

152152
Gemspec/RequiredRubyVersion:
153153
Exclude:
154-
- cluster/rediscluster.gemspec
154+
- cluster/redis-clustering.gemspec

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Unreleased
22

3-
# Unreleased 5.0.0.beta1
3+
# 5.0.0.beta3
44

55
- Use `MD5` for hashing server nodes in `Redis::Distributed`. This should improve keys distribution among servers. See #1089.
66
- Changed `sadd` and `srem` to now always return an Integer.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ redis = Redis.new(name: 'mymaster', sentinels: SENTINELS, role: :master)
133133

134134
## Cluster support
135135

136-
[Clustering](https://redis.io/topics/cluster-spec). is supported via the [`rediscluster` gem](cluster/).
136+
[Clustering](https://redis.io/topics/cluster-spec). is supported via the [`redis-clustering` gem](cluster/).
137137

138138
## Pipelining
139139

Rakefile

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
require 'bundler/gem_tasks'
4-
Bundler::GemHelper.install_tasks(dir: "cluster", name: "rediscluster")
4+
Bundler::GemHelper.install_tasks(dir: "cluster", name: "redis-clustering")
55

66
require 'rake/testtask'
77

cluster/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
Install with:
66

77
```
8-
$ gem install rediscluster
8+
$ gem install redis-clustering
99
```
1010

11-
You can connect to Redis by instantiating the `Redis::Cluter` class:
11+
You can connect to Redis by instantiating the `Redis::Cluster` class:
1212

1313
```ruby
14-
require "rediscluster"
14+
require "redis-clustering"
1515

1616
redis = Redis::Cluter.new(nodes: (7000..7005).map { |port| "redis://127.0.0.1:#{port}" })
1717
```
File renamed without changes.

cluster/rediscluster.gemspec renamed to cluster/redis-clustering.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require_relative "../lib/redis/version"
44

55
Gem::Specification.new do |s|
6-
s.name = "rediscluster"
6+
s.name = "redis-clustering"
77

88
s.version = Redis::VERSION
99

0 commit comments

Comments
 (0)