grape-listing 2.0.0.pre.beta.10 → 2.0.0.pre.beta.11
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/lib/grape_listing/version.rb +1 -1
- data/lib/listing_service/search.rb +2 -2
- 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: 0542abc140bd6936b962517da4c0650550f7a3f3624940b606f541ec2233d190
|
4
|
+
data.tar.gz: a6764a6a57d82189558fe2b04426a3a0c961c2e580f5f2c6f28696f3ac8cce40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c795d32967d973bad49a50450431df75f7ab6c416a88362d4ecd6eaa554acef1b2116feb6f3c77b44694fa5115e3a855b756f7c1b15068558c6a20d69e03fc5
|
7
|
+
data.tar.gz: 9ae96a0514bfd032b39570cbd088e8286ffca3b8a8943e486eddc1a25a7f91f206b4b173da709b4f8061cc173ec79ebabac6d00e608691e8ae761ec1ee6f53ce
|
@@ -175,9 +175,9 @@ module GrapeListing
|
|
175
175
|
def string_equal(subject, condition, value)
|
176
176
|
case condition
|
177
177
|
when IS
|
178
|
-
"#{subject} = '#{value}'"
|
178
|
+
"LOWER(#{subject}) = '#{value.downcase}'"
|
179
179
|
when NOT
|
180
|
-
"#{subject} != '#{value}'"
|
180
|
+
"LOWER(#{subject}) != '#{value.downcase}'"
|
181
181
|
end
|
182
182
|
end
|
183
183
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grape-listing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.pre.beta.
|
4
|
+
version: 2.0.0.pre.beta.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Павел Бабин
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|