json-logic-rb 0.3.0 → 0.3.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: 810c50b59976cf832b8171f84696315690a47d99a894f65e7430b6a62f5effa0
4
- data.tar.gz: d398558a21b6b194da078ba175f03349ddc5f8f17a51d939e0b554f267a9e15d
3
+ metadata.gz: bea82b6941ef6dbbf48df5f4ab5ee12bf81ee3f24e783e3ec90dbbd7871e7863
4
+ data.tar.gz: 7457c77d52797604390ad65efd59bf35bc2fc09d19d4ff25aa973dd885e13899
5
5
  SHA512:
6
- metadata.gz: a4fb7f21bfebbd7f852f62be1dc7acf4a9047aac1af3405b5d37e3c64fdc9b08b7c30b85a3168e1b64c716aefcf2526a6003b20ba5494ce2b8c55f1c5b01d225
7
- data.tar.gz: 604c4a8adbe4b06fd130e0fcc07443a79899d2f1f777bf6b82da815fb9277fef5bff7c2c596329ce62042ece12d1258f0cb61fc997a43bf532546efb7881f618
6
+ metadata.gz: ec9d6cb71cd5845e706480b8cd53109010354fc33412222f15681fab0f197a42ddd82396f18a17d37ed528027752506debf8e5064a42684f8fb38defd1774c05
7
+ data.tar.gz: cf519af8c118e25d879c53d209b8c12545105e6d492c46c034499cdb25dcbfdb4f8bf6e751542b1efc3b61975b1f0cb5b5b2e32a19f1a4f5775c34b3906f0942
@@ -1,3 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module JsonLogic; VERSION = '0.3.0'; end
3
+ module JsonLogic; VERSION = '0.3.1'; end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json-logic-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tavrel Kate
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-09-06 00:00:00.000000000 Z
10
+ date: 2026-09-10 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: Ruby implementation of JsonLogic. JsonLogic rules are JSON trees. The
13
13
  engine walks that tree and returns a Ruby value. Full compliance with both core
@@ -25,7 +25,6 @@ files:
25
25
  - lib/json_logic/errors/invalid_arguments_error.rb
26
26
  - lib/json_logic/errors/logic_error.rb
27
27
  - lib/json_logic/errors/nan_error.rb
28
- - lib/json_logic/errors/unknown_operator_error.rb
29
28
  - lib/json_logic/lazy_operation.rb
30
29
  - lib/json_logic/operation.rb
31
30
  - lib/json_logic/operations/add.rb
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module JsonLogic
4
- class UnknownOperatorError < Error
5
- DEFAULT_MESSAGE = "Unknown Operator"
6
- end
7
- end