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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a43936672dd294704fcfd56d9e30a0a7a8f3102fc87e6decdced5fe18c5247c
4
- data.tar.gz: 1b18d65000b1d45d35b1f5b2ec8dff64672a78e316b2129c58d99c057af18aa6
3
+ metadata.gz: 1a084564c0d497c0d149ff2cb4f4109bed1f3e4d59047f629d3a8d38b0fde138
4
+ data.tar.gz: 3d3d67b0116b6fba2a1a74f7e3fa23a21a09cb323297ae8891eb16a3613bc4fd
5
5
  SHA512:
6
- metadata.gz: 94099bfe814a49a29a26d9eae937c6420a13bc1e0ae1f669dcd39a185581f8ba7ea309cdcc2d7ba53dd28e79fbfad1c4c69bc68302fac5d4a104b163d88e27eb
7
- data.tar.gz: e5bd1cbdcb78bf4f2ca031d81b7b3504bea322be315265874cf61d9439ee554ea5fb96552cebf0612d65388379976174b4e35a7b631009286970377ccdd776a7
6
+ metadata.gz: b03f2f6095191cdee5868f7f123c04c9689667f012fca8688f544e21f734a2ab5f3ff4f10fca868085155feed8e38b7a7d97592b32e1aae3b7957d02bfdd7215
7
+ data.tar.gz: bf21d0676ba2fac7f4152a0a24bb323bc057e8c201ab5174a0c3db641c0664913f546a658cb227ee3758a8df842d9122eddfe91c49cab5a5fc494eff0d19dae6
@@ -7,10 +7,9 @@ services:
7
7
 
8
8
  matrix:
9
9
  include:
10
- - rvm: 2.3
11
- - rvm: 2.4
12
10
  - rvm: 2.5
13
11
  - rvm: 2.6
12
+ - rvm: 2.7
14
13
  - rvm: 2.6
15
14
  env: COVERAGE=BriefSummary,Coveralls
16
15
  - rvm: ruby-head
@@ -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).
@@ -22,6 +22,6 @@
22
22
 
23
23
  module Protocol
24
24
  module Redis
25
- VERSION = "0.3.0"
25
+ VERSION = "0.3.1"
26
26
  end
27
27
  end
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.0
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: 2019-12-22 00:00:00.000000000 Z
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.4
161
+ rubygems_version: 3.0.6
162
162
  signing_key:
163
163
  specification_version: 4
164
164
  summary: A RESP protocol client/server parser.