query_limiter 0.1.2 → 0.1.3
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/Gemfile.lock +1 -1
- data/lib/query_limiter/version.rb +1 -1
- data/query_limiter.gemspec +2 -2
- 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: cfa3095c10ea3745eeee5a9cd576aad398c8c8acb6740abf13837aad60aaf9bb
|
4
|
+
data.tar.gz: dfaca252f36596d007a7265bac0b20adcc7aba3a487c6dd01205313d90ee38a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36804198c833315373fa53b8ecbf02f5bb5886e5dca32025d7d6162fc81e700ee8686d308d54dda52501d2204c3e7ed43bcf55e0fe249f2d3f6f1c9e052d2362
|
7
|
+
data.tar.gz: 7597d3cb1e5d6a53bdfe36ed88a5c70fd87e2384ad6cd3707b06476488cd734989fb44cd3f98891d62a4b3be3933735223ecf011b185a97ef5cc1cdb681036b8
|
data/Gemfile.lock
CHANGED
data/query_limiter.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Jitendra Kasaudhan"]
|
10
10
|
spec.email = ["jiten.ktm@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = "This gem will limit the results of the query by
|
13
|
-
spec.description = "If
|
12
|
+
spec.summary = "This gem will limit the results of the query by max_query_limit number"
|
13
|
+
spec.description = "If max_query_limit is not specified, this gem will return only 5 result items by default on all sql queries"
|
14
14
|
spec.homepage = "https://jkasaudhan.github.io"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: query_limiter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jitendra Kasaudhan
|
@@ -80,8 +80,8 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 5.0.0
|
83
|
-
description: If
|
84
|
-
by default on all sql queries
|
83
|
+
description: If max_query_limit is not specified, this gem will return only 5 result
|
84
|
+
items by default on all sql queries
|
85
85
|
email:
|
86
86
|
- jiten.ktm@gmail.com
|
87
87
|
executables: []
|
@@ -127,5 +127,5 @@ requirements: []
|
|
127
127
|
rubygems_version: 3.0.9
|
128
128
|
signing_key:
|
129
129
|
specification_version: 4
|
130
|
-
summary: This gem will limit the results of the query by
|
130
|
+
summary: This gem will limit the results of the query by max_query_limit number
|
131
131
|
test_files: []
|