brpoplpush-redis_script 0.1.2 → 0.1.3

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: 700c428f39509841b1b57649080eb10d4e39d3a9307841185244474f2f2f6b46
4
- data.tar.gz: 7eba093ab9a513c0693f3dedd1e65f07c6a38d717f5f9521d90adc9a842e8d3b
3
+ metadata.gz: 1d46e9d8ae7b62fd2865761754939ff04fb7367c06e923c4d361172317c8877e
4
+ data.tar.gz: f1f9faffd30fad2e31abdac271e1fbad4d122fa2112e6089256bbde8c2cbc9a9
5
5
  SHA512:
6
- metadata.gz: 39ed7c606fa733e6f936439a80b6ab0609886d35d22f6f24fb5e54ac7429c157310ce178dc89cf9b6e745ab521993b9bc74de16cc135acb8cf8b49bc33e17e87
7
- data.tar.gz: a28466e28c6f937811d887a5b71aced052d01aa8f6957d9c453a3d754ac0466849bae7c96cd9def50b827f3e8ea855fba7ccb1c10386a65e7836180eb6c12ac2
6
+ metadata.gz: 20d98ddb4c7fc491f0999190ac2676e7f2a8652a1bf3badaaf5c01e6f737e8d581049201058a4d5bc95120d4195536faf5e60585cd99d184093d7b1867af36bb
7
+ data.tar.gz: 1d7e7213940be21e4f9a792a52ad91fab2d2faf9b64c311fe5fa36b8f3b1f5f1e97aa99dc3ccdb507952ba8f0338e579db0e534cd0216140950e71e1ac024ef1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.1.2](https://github.com/brpoplpush/brpoplpush-redis_script/tree/v0.1.2) (2021-03-18)
4
+
5
+ [Full Changelog](https://github.com/brpoplpush/brpoplpush-redis_script/compare/v0.1.1...v0.1.2)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Various updates [\#21](https://github.com/brpoplpush/brpoplpush-redis_script/pull/21) ([mhenrixon](https://github.com/mhenrixon))
10
+
11
+ **Fixed bugs:**
12
+
13
+ - Improve compatibility with redis-namespace \#19 [\#20](https://github.com/brpoplpush/brpoplpush-redis_script/pull/20) ([Wolfer](https://github.com/Wolfer))
14
+ - lint: pin rubocop related gems [\#18](https://github.com/brpoplpush/brpoplpush-redis_script/pull/18) ([mberlanda](https://github.com/mberlanda))
15
+
16
+ **Closed issues:**
17
+
18
+ - redis-namespace asks to use admistrative commands directly [\#19](https://github.com/brpoplpush/brpoplpush-redis_script/issues/19)
19
+
3
20
  ## [v0.1.1](https://github.com/brpoplpush/brpoplpush-redis_script/tree/v0.1.1) (2020-02-10)
4
21
 
5
22
  [Full Changelog](https://github.com/brpoplpush/brpoplpush-redis_script/compare/v0.1.0...v0.1.1)
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Bring your own LUA scripts into redis
4
4
 
5
- [![Build Status](https://travis-ci.com/brpoplpush/brpoplpush-redis_script.svg?branch=master)](https://travis-ci.com/brpoplpush/brpoplpush-redis_script) [![Maintainability](https://api.codeclimate.com/v1/badges/3770a079b380d50c3d50/maintainability)](https://codeclimate.com/github/brpoplpush/brpoplpush-redis_script/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/3770a079b380d50c3d50/test_coverage)](https://codeclimate.com/github/brpoplpush/brpoplpush-redis_script/test_coverage) [![Gem Version](https://badge.fury.io/rb/brpoplpush-redis_script.svg)](https://badge.fury.io/rb/brpoplpush-redis_script)
5
+ ![RSpec Status](https://github.com/brpoplpush/brpoplpush-redis_script/actions/workflows/rspec.yml/badge.svg) [![Maintainability](https://api.codeclimate.com/v1/badges/3770a079b380d50c3d50/maintainability)](https://codeclimate.com/github/brpoplpush/brpoplpush-redis_script/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/3770a079b380d50c3d50/test_coverage)](https://codeclimate.com/github/brpoplpush/brpoplpush-redis_script/test_coverage) [![Gem Version](https://badge.fury.io/rb/brpoplpush-redis_script.svg)](https://badge.fury.io/rb/brpoplpush-redis_script)
6
6
 
7
7
  ## Installation
8
8
 
@@ -9,6 +9,7 @@ module Brpoplpush
9
9
  #
10
10
  class Misconfiguration < RuntimeError
11
11
  end
12
+
12
13
  # LuaError raised on errors in Lua scripts
13
14
  #
14
15
  # @author Mikael Henriksson <mikael@mhenrixon.com>
@@ -112,7 +112,7 @@ module Brpoplpush
112
112
  #
113
113
  def execute(name, conn, keys: [], argv: [])
114
114
  script = fetch(name, conn)
115
- conn.evalsha(script.sha, keys: keys, argv: argv)
115
+ conn.evalsha(script.sha, keys, argv)
116
116
  end
117
117
 
118
118
  def count
@@ -5,6 +5,6 @@ module Brpoplpush
5
5
  # :nocov:
6
6
  module RedisScript
7
7
  # :nocov:
8
- VERSION = "0.1.2"
8
+ VERSION = "0.1.3"
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brpoplpush-redis_script
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-03-18 00:00:00.000000000 Z
12
+ date: 2022-11-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -38,9 +38,9 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.0'
41
- - - "<="
41
+ - - "<"
42
42
  - !ruby/object:Gem::Version
43
- version: '5.0'
43
+ version: '6'
44
44
  type: :runtime
45
45
  prerelease: false
46
46
  version_requirements: !ruby/object:Gem::Requirement
@@ -48,9 +48,9 @@ dependencies:
48
48
  - - ">="
49
49
  - !ruby/object:Gem::Version
50
50
  version: '1.0'
51
- - - "<="
51
+ - - "<"
52
52
  - !ruby/object:Gem::Version
53
- version: '5.0'
53
+ version: '6'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: bundler
56
56
  requirement: !ruby/object:Gem::Requirement
@@ -180,6 +180,7 @@ metadata:
180
180
  homepage_uri: https://github.com/brpoplpush/brpoplpush-redis_script
181
181
  source_code_uri: https://github.com/brpoplpush/brpoplpush-redis_script
182
182
  changelog_uri: https://github.com/brpoplpush/brpoplpush-redis_script/CHANGELOG.md
183
+ rubygems_mfa_required: 'true'
183
184
  post_install_message:
184
185
  rdoc_options: []
185
186
  require_paths:
@@ -195,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
195
196
  - !ruby/object:Gem::Version
196
197
  version: '0'
197
198
  requirements: []
198
- rubygems_version: 3.2.6
199
+ rubygems_version: 3.3.25
199
200
  signing_key:
200
201
  specification_version: 4
201
202
  summary: Bring your own LUA scripts into redis.