ratelimitcop 1.0.0 → 1.0.1
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 +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -0
- data/lib/ratelimitcop/version.rb +1 -1
- data/ratelimitcop.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4e0be667d421af5154e7b84f403f06b8035155e7ee93f38a22bbeff92d022212
|
|
4
|
+
data.tar.gz: 350a30c2bee3c06f2b43f8926a34cd4f453a15787c31f74f595b7672aca1446b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f604b755935a82868411aac1d95c5f6419c74ec0e047a3f7eee4d6734cf871dba6fc71f0cc89be001f098ea9bdfea27673aaef1fd14cbf6027f83781adef7ba
|
|
7
|
+
data.tar.gz: 3fd73c8d828bf2e1573d8611c33f1a532383c758ea5a2651ff6fa2d4b95741a948eea4aae28f739292e34653869d37fe5ad0a3c3a62c4a0b64f64f926366b639
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
# v1.0.1
|
|
4
|
+
* Renaming of classes to match gem name - [@mathu97](https://github.com/mathu97).
|
|
5
|
+
|
|
3
6
|
# v1.0.0
|
|
4
7
|
|
|
5
8
|
* Initial release of a redis backed rate limiter. Inspired by @ejfinneran's [ratelimit gem](https://github.com/ejfinneran/ratelimit) and @ncr's [alternative limiter suggestion](https://github.com/ejfinneran/ratelimit/issues/38) - [@mathu97](https://github.com/mathu97).
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Ratelimitcop
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/ratelimitcop)
|
|
4
|
+
|
|
3
5
|
Ratelimitcop is a redis backed rate limiter. Appropriate for use cases where in-memory rate limiting would not work (i.e rate limiting across multiple processes, servers, apps, etc).
|
|
4
6
|
|
|
5
7
|
## Installation
|
data/lib/ratelimitcop/version.rb
CHANGED
data/ratelimitcop.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.email = ['mathusans52@gmail.com']
|
|
8
8
|
|
|
9
9
|
spec.summary = 'A redis backed rate limiter.'
|
|
10
|
-
spec.description = 'A redis backed rate limiter. Appropriate for use cases where in-memory rate limiting
|
|
10
|
+
spec.description = 'A redis backed rate limiter. Appropriate for use cases where in-memory rate limiting
|
|
11
11
|
would not work (i.e rate limiting across multiple processes, servers, apps, etc).'
|
|
12
12
|
spec.homepage = 'https://github.com/koffeefinance/ratelimitcop'
|
|
13
13
|
spec.license = 'MIT'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ratelimitcop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mathusan Selvarajah
|
|
@@ -109,7 +109,7 @@ dependencies:
|
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: 0.9.4
|
|
111
111
|
description: |-
|
|
112
|
-
A redis backed rate limiter. Appropriate for use cases where in-memory rate limiting
|
|
112
|
+
A redis backed rate limiter. Appropriate for use cases where in-memory rate limiting
|
|
113
113
|
would not work (i.e rate limiting across multiple processes, servers, apps, etc).
|
|
114
114
|
email:
|
|
115
115
|
- mathusans52@gmail.com
|