durable_rules 2.0.24 → 2.0.25
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/src/rules/regex.c +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d29d64b26e30907d7563a20f41859e953ea2069
|
|
4
|
+
data.tar.gz: 4f4fa3766f827c742777de0e5ad7d606f2b053af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7aa638c38a20bcadb5fa3596db5a00d86e09eaa1fb51a30820aeabe1b0773505a7d5ad98a2d2a8c81261dbb0ee0faf0410e642856b09521f040240251aed7421
|
|
7
|
+
data.tar.gz: ecf9939cc20c4ed92bc537b420173e60f711c283fc3f1dd14d15494c5e642f2fc46d0e9909275de6736dc959bbc5631d6f39419e920d6f41a35ac9b10b5daaa1
|
data/src/rules/regex.c
CHANGED
|
@@ -1260,7 +1260,7 @@ static unsigned int packGraph(state *start,
|
|
|
1260
1260
|
for (int i = 0; i < currentState->transitionsLength; ++ i) {
|
|
1261
1261
|
transition *currentTransition = ¤tState->transitions[i];
|
|
1262
1262
|
unsigned int currentTransitionSymbol = currentTransition->symbol;
|
|
1263
|
-
if (caseInsensitive) {
|
|
1263
|
+
if (caseInsensitive && currentTransitionSymbol != REGEX_DOT) {
|
|
1264
1264
|
currentTransitionSymbol = tolower(currentTransitionSymbol);
|
|
1265
1265
|
}
|
|
1266
1266
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: durable_rules
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.25
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jesus Ruiz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-04-
|
|
11
|
+
date: 2020-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|