jini 0.0.7 → 0.0.9
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/.yardoc/checksums +1 -1
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/README.md +3 -3
- data/doc/Jini/InvalidPath.html +1 -1
- data/doc/Jini.html +371 -134
- data/doc/_index.html +1 -1
- data/doc/file.README.html +4 -4
- data/doc/index.html +4 -4
- data/doc/method_list.html +26 -10
- data/doc/top-level-namespace.html +1 -1
- data/jini.gemspec +1 -1
- data/lib/jini.rb +69 -25
- data/test/jini_test.rb +96 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff07fd6583401569bff9987836b1fb42d7f0e2f63be76c57341bcaf8d7687ce5
|
|
4
|
+
data.tar.gz: 12936604512f8e880e9b18d48eeb5abb92d6d94fbb73847a508915bccf16ddf4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d45fd8e0d6ea6f14aa029070ef1222359fa206a0253e23860582680208f1d4c317fa130d7c0326259b598761688a699a76b44ff37422d6dbed52ff6bb682551
|
|
7
|
+
data.tar.gz: 9137f564168c1f51d6a2ce33a92aa85cc8577492bdbf06eb76025a0acca4dbb63c7f982eb86644c4152538737989cd12a7bfa26a667161d9027771318efa0830
|
data/.yardoc/checksums
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
lib/jini.rb
|
|
1
|
+
lib/jini.rb a9106f03f3b7d09ee47b0bc5ae7bce709b21c1b5
|
data/.yardoc/object_types
CHANGED
|
Binary file
|
data/.yardoc/objects/root.dat
CHANGED
|
Binary file
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/jini)
|
|
4
4
|
|
|
5
|
-
The class [`Jini`](https://www.rubydoc.info/gems/jini/0.0.
|
|
5
|
+
The class [`Jini`](https://www.rubydoc.info/gems/jini/0.0.8/Jini) helps you build a XPATH.
|
|
6
6
|
|
|
7
7
|
```ruby
|
|
8
8
|
require 'jini'
|
|
@@ -11,12 +11,12 @@ xpath = Jini
|
|
|
11
11
|
.add_node('parent') # addition a path node
|
|
12
12
|
.add_node('child') # addition a path node
|
|
13
13
|
.add_attr('key', 'value') # addition an attribute
|
|
14
|
-
.remove_node('child') # removes
|
|
14
|
+
.remove_node('child') # removes node
|
|
15
15
|
.to_s # convert it to a string
|
|
16
16
|
puts(xpath) # -> xpath: /parent[@key="value"]
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
The full list of methods is [here](https://www.rubydoc.info/gems/jini/0.0.
|
|
19
|
+
The full list of methods is [here](https://www.rubydoc.info/gems/jini/0.0.8).
|
|
20
20
|
|
|
21
21
|
Install it:
|
|
22
22
|
|
data/doc/Jini/InvalidPath.html
CHANGED
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
</div>
|
|
126
126
|
|
|
127
127
|
<div id="footer">
|
|
128
|
-
Generated on
|
|
128
|
+
Generated on Sat Sep 17 07:51:31 2022 by
|
|
129
129
|
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
130
130
|
0.9.28 (ruby-3.0.0).
|
|
131
131
|
</div>
|