rapidity 0.0.5.88564 → 0.0.6.88566

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc0bdcbad063ffce0142d3eacdad37e4ee78186ee4bb2092c1677c871fb52fa2
4
- data.tar.gz: 15017d1bae8b36afc44d484616bc2fe5f21c85e868606c9dc137ad0f4c04a5f1
3
+ metadata.gz: f035f3525eab3c929a835208cd275212935d1052df051234b46a5240517d3c25
4
+ data.tar.gz: 129798e61b0e40d402d18d1d5d80d2e2f1f05e99c53de2c0bec240774d0fda07
5
5
  SHA512:
6
- metadata.gz: 68967c5c216162141ddf9be4871c47f4db4966b07ad2e2faac5950ec1987244a445df52e41693b3fcb6a324d7d61b640c1293b139d671059047e84778a5df3b0
7
- data.tar.gz: a97d793eb5b42c556ee971c1484f25b5910f8576ba280bd60ce845780f79cd63fdd015a5618568b04b4e9bda83000995e3dda096d920d7aca3c33e8ef5a7c129
6
+ metadata.gz: eb39b54f19ee6d1bc89592aa9a03012c2e274452a72ff4e6bafdb629b614aa8401e5fbc1626f108b30d98f46e6b9a7bc498f2612cfa9cd0fd593d9c710e8e750
7
+ data.tar.gz: 0043036ac0b0451f1a694f565b2149ecf88b9219a7997beb6a7ec9aa3e4b14be800c1e7e676747a4a3ec93ef21ce69fbba8110ea8f8a6ccedd28a61ce3374c7e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rapidity (0.0.5.88564)
4
+ rapidity (0.0.6.88566)
5
5
  activesupport
6
6
  connection_pool
7
7
  redis
data/README.md CHANGED
@@ -12,10 +12,12 @@
12
12
  Simple but fast Redis-backed distributed rate limiter. Allows you to specify time interval and count within to limit distributed operations.
13
13
 
14
14
  Features:
15
-
16
- - extremly simple
17
- - safe
18
- - fast
15
+
16
+ - extremly simple
17
+ - free from race condition through LUA scripting
18
+ - fast
19
+
20
+ [Article(russian) about gem.](https://blog.rnds.pro/029-rapidity/?utm_source=github&utm_medium=repo&utm_campaign=rnds)
19
21
 
20
22
  ## Usage
21
23
 
@@ -75,18 +77,22 @@ loop do
75
77
  sleep 1
76
78
  end
77
79
  end
78
-
79
80
  ```
80
81
 
81
82
  ## Installation
82
83
 
83
84
  It's a gem:
85
+
84
86
  ```bash
85
87
  gem install rapidity
86
88
  ```
89
+
87
90
  There's also the wonders of [the Gemfile](http://bundler.io):
91
+
88
92
  ```ruby
89
93
  gem 'rapidity'
90
94
  ```
91
95
 
96
+ ## Special Thanks
92
97
 
98
+ - [WeTransfer/prorate](https://github.com/WeTransfer/prorate) for LUA-examples
@@ -1,6 +1,6 @@
1
1
  module Rapidity
2
2
 
3
- VERSION = '0.0.5'.freeze
3
+ VERSION = '0.0.6'.freeze
4
4
 
5
5
  end
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rapidity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5.88564
4
+ version: 0.0.6.88566
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yurusov Vlad