decision_agent 0.1.6 → 0.2.0
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/README.md +3 -3
- data/bin/decision_agent +1 -1
- data/lib/decision_agent/dsl/condition_evaluator.rb +1129 -12
- data/lib/decision_agent/dsl/schema_validator.rb +10 -0
- data/lib/decision_agent/version.rb +1 -1
- data/lib/decision_agent/web/public/app.js +119 -1
- data/lib/decision_agent/web/public/index.html +69 -1
- data/lib/generators/decision_agent/install/templates/README +1 -1
- data/spec/advanced_operators_spec.rb +2147 -0
- data/spec/examples.txt +1567 -1476
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9fa9e4bed91c21f5402c19a902132014c30ab88b2acae6416d51831a544a0da
|
|
4
|
+
data.tar.gz: df95ffc19c834fc4a6c6bfe9fa72544d958e6715fef217e6ca680171c095caa8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: baf0c6e8b0a5895883cf6d3186f9f6576417a7bf943032aded6c5a989617a3dace19cb5f8d949d5488b10499d437f62519842ea22cc05751b9e5111ba3bc3860
|
|
7
|
+
data.tar.gz: 4196b121c6c061e0271278fba1f2861c830b6b358d09e0cf8cd29859aa05b7049b6eb3272f6ba961b9f9bc55a39786e1f1eb43f8728fb9039a82186da3ba9ae0
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# DecisionAgent
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/decision_agent)
|
|
4
|
-
[](https://github.com/samaswin/decision_agent/actions/workflows/ci.yml)
|
|
5
5
|
[](LICENSE.txt)
|
|
6
6
|
[](https://www.ruby-lang.org)
|
|
7
7
|
|
|
@@ -189,7 +189,7 @@ See [Monitoring & Analytics Guide](docs/MONITORING_AND_ANALYTICS.md) for complet
|
|
|
189
189
|
|
|
190
190
|
### More Resources
|
|
191
191
|
- [Documentation Home](docs/README.md) - Documentation index
|
|
192
|
-
- [GitHub Issues](https://github.com/
|
|
192
|
+
- [GitHub Issues](https://github.com/samaswin/decision_agent/issues) - Report bugs or request features
|
|
193
193
|
|
|
194
194
|
## Thread-Safety & Performance
|
|
195
195
|
|
|
@@ -213,7 +213,7 @@ See [Thread-Safety Guide](docs/THREAD_SAFETY.md) and [Performance Analysis](docs
|
|
|
213
213
|
|
|
214
214
|
## Support
|
|
215
215
|
|
|
216
|
-
- **Issues**: [GitHub Issues](https://github.com/
|
|
216
|
+
- **Issues**: [GitHub Issues](https://github.com/samaswin/decision_agent/issues)
|
|
217
217
|
- **Documentation**: [Documentation](docs/README.md)
|
|
218
218
|
- **Examples**: [Examples Directory](examples/README.md)
|
|
219
219
|
|