zen-engine-ruby 0.0.1-arm64-darwin → 0.0.3-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -3
- data/lib/zen-engine-ruby/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ddc88ebed5d647706b2f0093b554462f445931e9eb7d619f0d3b38adb150db7
|
4
|
+
data.tar.gz: f900ab62c489818a76c13c10e7f89bcba603f1198cb3f82a26f886ee266bee43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '048b186f84ebc0b8775313ea53af32a00e05676abdb761c431271eadebd21ff2319c40d22dfa83153ebeb0edfb1e928e81e462428ce6c7ca4b7e911660310dd0'
|
7
|
+
data.tar.gz: f1c810e31fdfb38e66cdec76dc7e0ba42f584166e1caf009b6abe036a8c82158564061e65364abcc1f5d71d7d36b06e55b445704be284775ee10bad5ee9f83d5
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
Ruby Bindings for the [GoRules Zen Business Rules Engine](https://github.com/gorules/zen).
|
6
6
|
|
7
7
|
ZEN Engine is a cross-platform, Open-Source Business Rules Engine (BRE). It is written in Rust and provides native
|
8
|
-
bindings for **NodeJS**, **Python**, **Ruby**, and **Go**. ZEN Engine allows to load and execute JSON Decision Model (JDM) from JSON files.
|
8
|
+
bindings for **Ruby**, **NodeJS**, **Python**, **Ruby**, and **Go**. ZEN Engine allows to load and execute JSON Decision Model (JDM) from JSON files.
|
9
9
|
|
10
10
|
<img width="800" alt="Open-Source Rules Engine" src="https://gorules.io/images/jdm-editor.gif">
|
11
11
|
|
@@ -14,10 +14,11 @@ An open-source React editor is available on our [JDM Editor](https://github.com/
|
|
14
14
|
## Installation
|
15
15
|
|
16
16
|
```bash
|
17
|
-
|
18
|
-
# gem install zen-engine-ruby
|
17
|
+
gem install zen-engine-ruby
|
19
18
|
```
|
20
19
|
|
20
|
+
Or add `zen-engine-ruby` to your `Gemfile`.
|
21
|
+
|
21
22
|
## Usage
|
22
23
|
|
23
24
|
ZEN Engine is built as embeddable BRE for your **Ruby**, **Rust**, **NodeJS**, **Python** or **Go** applications.
|