porolog 0.0.3 → 0.0.4
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 +5 -2
- data/coverage/badge.svg +1 -0
- data/coverage/index.html +7090 -0
- data/doc/Porolog.html +337 -0
- data/doc/_index.html +187 -0
- data/doc/class_list.html +51 -0
- data/doc/file.README.html +250 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +250 -0
- data/doc/method_list.html +403 -0
- data/doc/top-level-namespace.html +110 -0
- data/lib/porolog/arguments.rb +173 -0
- data/lib/porolog/predicate.rb +3 -2
- data/lib/porolog/scope.rb +3 -2
- data/lib/porolog.rb +4 -2
- data/test/porolog/arguments_test.rb +790 -0
- data/test/porolog/porolog_test.rb +67 -0
- data/test/porolog/predicate_test.rb +27 -9
- data/test/porolog/scope_test.rb +13 -13
- data/test/test_helper.rb +22 -2
- metadata +20 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b7dc70d745ec004b1ec85c53c62b1532a93dc95d217deebec0cff67da5abc67
|
4
|
+
data.tar.gz: e82ea5b4dc9b03c4b61f6fbb530598cfda77a2beac5a7983603e6229978a367c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c0a09fe5edd703fe1835b05e58208279cb136a8cfe8e510893da70002e214f4807c76ca2e5744cd4238500420cb0ef450925c5fa1fde352b695751a5a43ecee
|
7
|
+
data.tar.gz: f4d2886435796143fb413c6e4552a72a5e4980d4f75134e0ef0ce7553777d3ee5991a63988b60f4f34acaf0e129c1042a74740206c513501aa66be4abc597ebf
|
data/README.md
CHANGED
@@ -2,10 +2,12 @@
|
|
2
2
|
|
3
3
|
<img src="https://repository-images.githubusercontent.com/131847563/b3754100-636a-11e9-995b-20d409b992c9" width="240" height="120" align="right" />
|
4
4
|
|
5
|
-
Plain Old Ruby Objects Prolog
|
5
|
+
Plain Old Ruby Objects Prolog (WORK IN PROGRESS)
|
6
6
|
|
7
7
|
[](https://badge.fury.io/rb/porolog)
|
8
8
|
[](https://travis-ci.com/wizardofosmium/porolog)
|
9
|
+

|
10
|
+
[](https://github.com/wizardofosmium/porolog)
|
9
11
|
|
10
12
|
## Introduction
|
11
13
|
|
@@ -22,7 +24,7 @@ Ruby objects could be passed in and Ruby objects were passed back.
|
|
22
24
|
## Dependencies
|
23
25
|
|
24
26
|
The aim of `porolog` is to provide a logic engine with a minimal footprint.
|
25
|
-
The only dependency is Yard for documentation.
|
27
|
+
The only extra dependency is Yard for documentation.
|
26
28
|
|
27
29
|
## Installation
|
28
30
|
|
@@ -161,6 +163,7 @@ or
|
|
161
163
|
```bash
|
162
164
|
rake scope_test
|
163
165
|
rake predicate_test
|
166
|
+
rake arguments_test
|
164
167
|
```
|
165
168
|
|
166
169
|
## Author
|
data/coverage/badge.svg
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="114" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="114" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h61v20H0z"/><path fill="#97ca00" d="M61 0h53v20H61z"/><path fill="url(#b)" d="M0 0h114v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110"> <text x="315" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="510">coverage</text><text x="315" y="140" transform="scale(.1)" textLength="510">coverage</text><text x="865" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="430">84.26%</text><text x="865" y="140" transform="scale(.1)" textLength="430">84.26%</text></g> </svg>
|