jini 0.1.0 → 0.1.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/README.md +2 -2
- data/jini.gemspec +1 -1
- 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: 78f0ddf62c41fa214337e5452e97d8fea0f27b6cb9b6ef6acfe549d5590fc4d2
|
|
4
|
+
data.tar.gz: 7c1fad0847befd8b1ac0fb7d785ec891fa04b16914c9206d84e212864d7513ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da439ca32a46f2a9464f1dc9ccb185263ea1b3a138c71e1571befbdfbd1fb20d5178b8ce554d89a9a626aa8f58264803adcda2d25969b17f001485c53d2cce52
|
|
7
|
+
data.tar.gz: 9678d7a095c41aad763115578259c89f739116f7182e28253e09663e4a29f00d09a659c691381d66717200825bd3eeb08e1c4d7372ff7b649a17fc725ea52702
|
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.1.0/Jini) helps you build a XPATH.
|
|
6
6
|
|
|
7
7
|
```ruby
|
|
8
8
|
require 'jini'
|
|
@@ -16,7 +16,7 @@ xpath = Jini
|
|
|
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.1.0).
|
|
20
20
|
|
|
21
21
|
Install it:
|
|
22
22
|
|
data/jini.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ Gem::Specification.new do |s|
|
|
|
5
5
|
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
|
|
6
6
|
s.required_ruby_version = '>=3.0.0'
|
|
7
7
|
s.name = 'jini'
|
|
8
|
-
s.version = '0.1.
|
|
8
|
+
s.version = '0.1.1'
|
|
9
9
|
s.license = 'MIT'
|
|
10
10
|
s.summary = 'Simple Immutable Ruby XPATH Builder'
|
|
11
11
|
s.description = 'Class Jini helps you build a XPATH and then modify its parts via a simple fluent interface.'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jini
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Ivanchuck
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-09-
|
|
11
|
+
date: 2022-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|