gruf-balancer 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +6 -3
- data/gruf-balancer.gemspec +1 -1
- data/lib/gruf/balancer/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b33d914ca1a77cc5455163bc21594c248043c425ea83c362acc520d55b7fd29a
|
|
4
|
+
data.tar.gz: 3c096755fa4e866f3a12743df05658a87e39e03995044bb594deac6bda87035f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afa17ca1dc0464ba3d4d4b2ab8b95fb18cb29c3c735d99534f518f7a570ef9f83c620121890700917c6faac7a16cef2e2f1dc0df09eded37fea158cd626b01b4
|
|
7
|
+
data.tar.gz: 8bd49f2c29c74a4dc1771cfd58f6e3d1c30e074dc99f4f5831529e98045165f29684082de7881962878538097b7cb4b445c9e920d0973d5fb9239499e486a25e
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
# gruf-balancer - Testing framework for Gruf Clients
|
|
2
2
|
|
|
3
|
-
[](https://circleci.com/gh/bigcommerce/gruf-balancer/tree/main) [](https://circleci.com/gh/bigcommerce/gruf-balancer/tree/main) [](https://badge.fury.io/rb/gruf-balancer)
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
[](https://codeclimate.com/github/bigcommerce/gruf-balancer/maintainability) [](https://codeclimate.com/github/bigcommerce/gruf-balancer/test_coverage)
|
|
6
|
+
|
|
7
|
+
Provides an integration for [gruf](https://github.com/bigcommerce/gruf) Ruby gRPC framework, allowing testing
|
|
8
|
+
various outbound `Gruf::Client` calls on a percentage-basis, letting you balance requests between multiple clients
|
|
9
|
+
for testing new services, code paths, or networking operations.
|
|
7
10
|
|
|
8
11
|
## Installation
|
|
9
12
|
|
data/gruf-balancer.gemspec
CHANGED
|
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
spec.files = Dir['README.md', 'CHANGELOG.md', 'CODE_OF_CONDUCT.md', 'lib/**/*', 'gruf-balancer.gemspec']
|
|
33
33
|
spec.require_paths = ['lib']
|
|
34
34
|
|
|
35
|
-
spec.required_ruby_version = '>= 2.
|
|
35
|
+
spec.required_ruby_version = '>= 2.7'
|
|
36
36
|
|
|
37
37
|
spec.add_development_dependency 'benchmark-memory', '0.1.2'
|
|
38
38
|
spec.add_development_dependency 'bundler-audit', '>= 0.6'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gruf-balancer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shaun McCormick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-04-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: benchmark-memory
|
|
@@ -219,14 +219,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
219
219
|
requirements:
|
|
220
220
|
- - ">="
|
|
221
221
|
- !ruby/object:Gem::Version
|
|
222
|
-
version: '2.
|
|
222
|
+
version: '2.7'
|
|
223
223
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
224
224
|
requirements:
|
|
225
225
|
- - ">="
|
|
226
226
|
- !ruby/object:Gem::Version
|
|
227
227
|
version: '0'
|
|
228
228
|
requirements: []
|
|
229
|
-
rubygems_version: 3.
|
|
229
|
+
rubygems_version: 3.3.3
|
|
230
230
|
signing_key:
|
|
231
231
|
specification_version: 4
|
|
232
232
|
summary: Allows for percentage-based balancing of gruf client calls
|