json-logic-ruby
json-logic-ruby copied to clipboard
Build complex rules, serialize them as JSON, and execute them in ruby
Closes #38
I have a problem when trying to compare dates within a range using the === operator. The current implementation does not support this. ```ruby range = Date.parse('2024-01-01')..Date.parse('2024-12-31') date = Date.parse('2024-07-22')...
Transform keys is now supported in ruby since 2.5 so this is causing issues with old code for transform_keys
**Problem Statement:** While trying to access a subset array from within a superset array using the "All" operator, I found that the "IN" operator does not function correctly when an...
## Problem The `add_operation` is manipulating the `Object` class. It can add new methods to object as well as overwrite existing methods. ```ruby Object.sum # Traceback (most recent call last):...