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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e930466da21f605e9a87bd1a1303dca72ade4ae093c500e3fa5bc38c55a558cd
4
- data.tar.gz: 50cc68ed62dd77901fe14148ba8762a69c4becfe0b51e8050dde3126df948511
3
+ metadata.gz: 4e0be667d421af5154e7b84f403f06b8035155e7ee93f38a22bbeff92d022212
4
+ data.tar.gz: 350a30c2bee3c06f2b43f8926a34cd4f453a15787c31f74f595b7672aca1446b
5
5
  SHA512:
6
- metadata.gz: e51c074ca0b1d59621a97956a4649b86e5421e2615a6b59613e6908346bcbe1ba894d6079298897778deaef296d218d8bbe25b635f6431ea99b344beabfc2987
7
- data.tar.gz: 3c6d0c72134ec06c1df11d4171c7329381f66115d747a15fc0a8688247cc13a3fef21942f557b13e11cc71afa94c3efbb2d8619e80c1282c7c609c3f9e1f66dc
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ratelimitcop (1.0.0)
4
+ ratelimitcop (1.0.1)
5
5
  redis (~> 4.4)
6
6
  redis-namespace (~> 1.8.1)
7
7
 
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Ratelimitcop
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/ratelimitcop.svg)](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
@@ -1,3 +1,3 @@
1
1
  class Ratelimitcop
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
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.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