protocol-redis 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -2
- data/lib/protocol/redis/methods/lists.rb +1 -1
- data/lib/protocol/redis/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a084564c0d497c0d149ff2cb4f4109bed1f3e4d59047f629d3a8d38b0fde138
|
4
|
+
data.tar.gz: 3d3d67b0116b6fba2a1a74f7e3fa23a21a09cb323297ae8891eb16a3613bc4fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b03f2f6095191cdee5868f7f123c04c9689667f012fca8688f544e21f734a2ab5f3ff4f10fca868085155feed8e38b7a7d97592b32e1aae3b7957d02bfdd7215
|
7
|
+
data.tar.gz: bf21d0676ba2fac7f4152a0a24bb323bc057e8c201ab5174a0c3db641c0664913f546a658cb227ee3758a8df842d9122eddfe91c49cab5a5fc494eff0d19dae6
|
data/.travis.yml
CHANGED
@@ -126,7 +126,7 @@ module Protocol
|
|
126
126
|
# @param count [Integer]
|
127
127
|
# @param element [String]
|
128
128
|
def lrem(key, count, value)
|
129
|
-
return call('LREM', key, count)
|
129
|
+
return call('LREM', key, count, value)
|
130
130
|
end
|
131
131
|
|
132
132
|
# Set the value of an element in a list by its index. O(N) where N is the length of the list. Setting either the first or the last element of the list is O(1).
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: protocol-redis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2020-02-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: async-http
|
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: '0'
|
160
160
|
requirements: []
|
161
|
-
rubygems_version: 3.0.
|
161
|
+
rubygems_version: 3.0.6
|
162
162
|
signing_key:
|
163
163
|
specification_version: 4
|
164
164
|
summary: A RESP protocol client/server parser.
|