jaina 0.4.0 → 0.4.1
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 +5 -1
- data/README.md +1 -0
- data/lib/jaina/parser/expression/operator/not.rb +1 -1
- data/lib/jaina/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: 9f027e5d8c994d9cacf4ff5e0a7445fb2672ca8535094761226ebc9c7d953824
|
|
4
|
+
data.tar.gz: 22f7134e0f3e5cebfc083ee5ba3193b670b894f8a90f3c8446ba1a4792bc4e3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71c341c0ea6dc1fa448b7ed8faf5be9e0dea67f4990f73b61b83a6094357e33c6372e194c40e3817a75dcd5a398e30926dcd5e18abc5c17bf2bc959f1270c82a
|
|
7
|
+
data.tar.gz: a52868c0af5703644c7f41c55179c9c1a5063b6f5496fa7d93a052c64a6b882d5269cb4de86ac1cda067881458eab2839dce75be422edea3ba8bbd99e8a17a80
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [0.4.1] - 2019-06-24
|
|
5
|
+
### Fixed
|
|
6
|
+
- Fxied `NOT` operator (`#evaluate` fails on incorrect `context` varibale name);
|
|
7
|
+
|
|
4
8
|
## [0.4.0] - 2019-06-24
|
|
5
9
|
### Added
|
|
6
|
-
- Support for operand
|
|
10
|
+
- Support for operand arguments and operator arguments;
|
|
7
11
|
|
|
8
12
|
## [0.3.0] - 2019-06-21
|
|
9
13
|
### Added
|
data/README.md
CHANGED
|
@@ -27,6 +27,7 @@ require 'jaina'
|
|
|
27
27
|
- [Context API](#context-api)
|
|
28
28
|
- [Parse your code (build AST)](#parse-your-code-build-ast)
|
|
29
29
|
- [Evaluate your code](#evaluate-your-code)
|
|
30
|
+
- [Custom operator/operand arguments](#custom-operatoroperand-arguments)
|
|
30
31
|
- [List registered operands and operators](#list-and-fetch-registered-operands-and-operators)
|
|
31
32
|
- [Full example](#full-example)
|
|
32
33
|
|
data/lib/jaina/version.rb
CHANGED