shiny_json_logic 0.1.4 → 0.1.5
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/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/shiny_json_logic/version.rb +1 -1
- data/shiny_json_logic.gemspec +5 -11
- metadata +6 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5af5c24c121a66a702066d61036b7febb6230cf93d89e738f91f5b610e68eb5e
|
|
4
|
+
data.tar.gz: 3f9e425f25edabe05fcbe8bca95302c465feb5c00f72e465694bd0195ee7e515
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc18bd78dfa7f000e9000856415288b095e0092a06feb54cd1817a9cf976976bc219e90ad39ede919cbfdd7396bcb393349a890cb7347daa31c8258862eb3346
|
|
7
|
+
data.tar.gz: 4d5f7885741001b33fe4da2f143354637a940b5d442fe402447c006a6acd9518cec4e65ceb0094de50442c0a5e100eb9e555e19fc097b501b6d1c551040fabc3
|
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.5] - 2026-01-25
|
|
6
|
+
### Changed
|
|
7
|
+
- Improve RubyGems gem description (no runtime changes).
|
|
8
|
+
|
|
5
9
|
## [0.1.4] - 2026-01-25
|
|
6
10
|
### Changed
|
|
7
11
|
- Improve RubyGems metadata and gem description (no runtime changes).
|
data/Gemfile.lock
CHANGED
data/shiny_json_logic.gemspec
CHANGED
|
@@ -10,16 +10,10 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["moyano@hey.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = "Production-ready JSON Logic for Ruby that just works: zero deps, Ruby 2.7+, high spec alignment."
|
|
13
|
-
spec.description =
|
|
14
|
-
ShinyJsonLogic is a pure-Ruby, zero-runtime-dependency implementation of the JSON Logic specification.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- Actively maintained and test-driven
|
|
18
|
-
- Designed for spec alignment and predictable behavior
|
|
19
|
-
- Highest support for JSON Logic operations within the Ruby ecosystem
|
|
20
|
-
|
|
21
|
-
JSON Logic lets you represent decisions as data, so rules can be stored, transmitted, and evaluated safely.
|
|
22
|
-
DESC
|
|
13
|
+
spec.description = %q{
|
|
14
|
+
ShinyJsonLogic is a pure-Ruby, zero-runtime-dependency implementation of the JSON Logic specification. Ruby 2.7+ compatible, actively maintained, test-driven, and designed for strict spec alignment and predictable behavior. It currently offers the highest support for JSON Logic operations in the Ruby ecosystem.
|
|
15
|
+
}
|
|
16
|
+
|
|
23
17
|
spec.homepage = "https://github.com/luismoyano/shiny-json-logic-ruby"
|
|
24
18
|
spec.license = "MIT"
|
|
25
19
|
|
|
@@ -29,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
|
29
23
|
"homepage_uri" => spec.homepage,
|
|
30
24
|
"source_code_uri" => spec.homepage,
|
|
31
25
|
"documentation_uri" => "#{spec.homepage}#readme",
|
|
32
|
-
"changelog_uri" => "#{spec.homepage}/blob/
|
|
26
|
+
"changelog_uri" => "#{spec.homepage}/blob/master/CHANGELOG.md",
|
|
33
27
|
"rubygems_mfa_required" => "true"
|
|
34
28
|
}
|
|
35
29
|
|
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.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luis Moyano
|
|
@@ -80,15 +80,10 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description:
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
- Actively maintained and test-driven
|
|
88
|
-
- Designed for spec alignment and predictable behavior
|
|
89
|
-
- Highest support for JSON Logic operations within the Ruby ecosystem
|
|
90
|
-
|
|
91
|
-
JSON Logic lets you represent decisions as data, so rules can be stored, transmitted, and evaluated safely.
|
|
83
|
+
description: "\n ShinyJsonLogic is a pure-Ruby, zero-runtime-dependency implementation
|
|
84
|
+
of the JSON Logic specification. Ruby 2.7+ compatible, actively maintained, test-driven,
|
|
85
|
+
and designed for strict spec alignment and predictable behavior. It currently offers
|
|
86
|
+
the highest support for JSON Logic operations in the Ruby ecosystem.\n "
|
|
92
87
|
email:
|
|
93
88
|
- moyano@hey.com
|
|
94
89
|
executables: []
|
|
@@ -162,7 +157,7 @@ metadata:
|
|
|
162
157
|
homepage_uri: https://github.com/luismoyano/shiny-json-logic-ruby
|
|
163
158
|
source_code_uri: https://github.com/luismoyano/shiny-json-logic-ruby
|
|
164
159
|
documentation_uri: https://github.com/luismoyano/shiny-json-logic-ruby#readme
|
|
165
|
-
changelog_uri: https://github.com/luismoyano/shiny-json-logic-ruby/blob/
|
|
160
|
+
changelog_uri: https://github.com/luismoyano/shiny-json-logic-ruby/blob/master/CHANGELOG.md
|
|
166
161
|
rubygems_mfa_required: 'true'
|
|
167
162
|
post_install_message:
|
|
168
163
|
rdoc_options: []
|