shiny_json_logic 0.1.7 → 0.1.8

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: a9900ca19c7b287666c48cd69a5343a876f2c4d9c49e1ff224ae7c1b56cdf99b
4
- data.tar.gz: eb6909a5a85affc348ddf9d0ed9b5395d384a34bb924aa410da40e5951168538
3
+ metadata.gz: e55b79d1e232c9bf51716ebc67350bee44a08732b25f5e58b6c9751ffea029ab
4
+ data.tar.gz: e274cb2f2a8442bd897d1474af29c018c79591589b5dada97017d49fcae6fff6
5
5
  SHA512:
6
- metadata.gz: 45ec24f6e4a8bc0e8c45285fa8e11eabd06c8161957e4798ce3f7ae19d843aec07f64bb901a1c726c0594d8990f5fbad858ccad126fce9a0a937de4431d2245e
7
- data.tar.gz: 6e398b31cb5f27592158082bffa8f113baa436cafa498b5c7f9c2d20c01d522857d6eb63195cfa6e8acc1669af68081d839461fcf0462fc2e2ee6b1f44c2cced
6
+ metadata.gz: 1e8411813d5b2ee6a62205c335faf5c7d96b1abfec722e7f3f7008dddbff9fb1761f5a441d89f1592fc41f0bf8380fce62fd88edce9cede8b02536350a25b55f
7
+ data.tar.gz: a47eab7e645e2602eb29476bcbd49cd98aecd3e1c59730bfbb01bc3c602622c9d07113e1034c86f24a4717bac3d6739ab03965ef5a90a46eb9b3a3b6f32d5e27
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.1.8] - 2026-02-01
6
+ ### Changed
7
+ - Removes debug prints.
8
+
5
9
  ## [0.1.7] - 2026-02-01
6
10
  ### Added
7
11
  - Adds support for `try` and `throw` operators.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shiny_json_logic (0.1.7)
4
+ shiny_json_logic (0.1.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -46,7 +46,6 @@ module ShinyJsonLogic
46
46
  result, data, errors = operations.solvers.fetch(operation).new(context).call.values_at("result", "data", "errors")
47
47
  self.errors = [*self.errors, *errors].uniq
48
48
  self.data.merge data if self.data.is_a?(Hash) && data.is_a?(Hash)
49
- p "RESULT AFTER #{operation.upcase}: #{result.inspect}"
50
49
 
51
50
  result
52
51
  end
@@ -17,7 +17,6 @@ module ShinyJsonLogic
17
17
  if res.is_a?(String) && res.match?(SHINY_ERROR_PATTERN) && errors.first.id == res
18
18
  errors.shift
19
19
  data.delete("type")
20
- p "TRY OPERATION CAUGHT AN ERROR: #{res}"
21
20
  end
22
21
  end
23
22
 
@@ -1,3 +1,3 @@
1
1
  module ShinyJsonLogic
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
data/results/ruby.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "totals": {
3
3
  "shiny_json_logic": {
4
- "passed": 843,
4
+ "passed": 860,
5
5
  "total": 1126
6
6
  }
7
7
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shiny_json_logic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis Moyano