gnfinder 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/CHANGELOG.md +5 -0
- data/lib/gnfinder/version.rb +1 -1
- data/lib/protob_pb.rb +3 -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: 53f1b28fa614c44d3254af8755444213e58cef6b69518e0eb08ee19291a12b19
|
|
4
|
+
data.tar.gz: 30bb826c23d5027a766a67b4effea0d58d24efed5df82b633786ba7ebe8e926e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5dc6c70223aca9fc2b2b80b2792f732cab47d0c732df95e8b0363b9ad63c765d807fb83dd14f14df3a072f677eb8b53a85814023de1f10c2562ff593c57e514
|
|
7
|
+
data.tar.gz: 81e05934d23e6505abbaf0947c5bd2b11a1dc0580403caf5393a96c930cc6fbbee40ddd625e6a5deb15d3e44d32f5e8248cbe1705644a26e825892c34f0a3024
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## [v0.1.1]
|
|
6
|
+
- Add [#6]: return start and end of names-strings
|
|
7
|
+
|
|
5
8
|
## [v0.1.0]
|
|
6
9
|
|
|
7
10
|
- Add [#5]: add an optional list of preferred data-sources for verification
|
|
@@ -14,8 +17,10 @@
|
|
|
14
17
|
|
|
15
18
|
This document follows [changelog guidelines]
|
|
16
19
|
|
|
20
|
+
[v0.1.1]: https://github.com/GlobalNamesArchitecture/gnfinder/compare/v0.1.0...v0.1.1
|
|
17
21
|
[v0.1.0]: https://github.com/GlobalNamesArchitecture/gnfinder/tree/v0.1.0
|
|
18
22
|
|
|
23
|
+
[#6]: https://github.com/GlobalNamesArchitecture/gnfinder/issues/5
|
|
19
24
|
[#5]: https://github.com/GlobalNamesArchitecture/gnfinder/issues/5
|
|
20
25
|
[#4]: https://github.com/GlobalNamesArchitecture/gnfinder/issues/4
|
|
21
26
|
[#3]: https://github.com/GlobalNamesArchitecture/gnfinder/issues/3
|
data/lib/gnfinder/version.rb
CHANGED
data/lib/protob_pb.rb
CHANGED
|
@@ -30,7 +30,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
30
30
|
optional :edit_distance_stem, :int32, 7
|
|
31
31
|
optional :source_id, :int32, 8
|
|
32
32
|
optional :match, :enum, 9, "protob.MatchType"
|
|
33
|
-
|
|
33
|
+
optional :offset_start, :int32, 10
|
|
34
|
+
optional :offset_end, :int32, 11
|
|
35
|
+
repeated :sources_result, :message, 12, "protob.SourceResult"
|
|
34
36
|
end
|
|
35
37
|
add_message "protob.SourceResult" do
|
|
36
38
|
optional :source_id, :int32, 1
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gnfinder
|
|
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
|
- Dmitry Mozzherin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-10-
|
|
11
|
+
date: 2018-10-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|