groonga-synonym 1.0.0 → 1.0.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/groonga-synonym.gemspec +2 -2
- data/lib/groonga-synonym/sudachi.rb +2 -2
- data/lib/groonga-synonym/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9df81cd2ca0b4160c906533b86c0070aa522b03b7c390ad29e520522b5a52b1
|
|
4
|
+
data.tar.gz: 127e73e0b92b0f3ac603b252463a26312c9f8b3f51c136f16135c8b51052c4a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c7229ff041578bfecbb40d92649c8630c7ad32932adc33dabed32b1e8ee4b1323aaa5b283f76f3e0541b5500910c2135db9adf249a888df12ae02a909939ef1
|
|
7
|
+
data.tar.gz: b6ea4a29a62c6b3a0b511bc8f51ac4ab6e3a618e670d0aa4437861be4dbda2dc1e11a1dde3c85b05ec62e571d5e7a257bd82d109efbaa76d84353dae5f97350a
|
data/groonga-synonym.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- ruby -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2021 Sutou Kouhei <kou@clear-code.com>
|
|
3
|
+
# Copyright (C) 2021-2023 Sutou Kouhei <kou@clear-code.com>
|
|
4
4
|
#
|
|
5
5
|
# This program is free software: you can redistribute it and/or modify
|
|
6
6
|
# it under the terms of the GNU General Public License as published by
|
|
@@ -47,5 +47,5 @@ Gem::Specification.new do |spec|
|
|
|
47
47
|
spec.executables = Dir.glob("*")
|
|
48
48
|
end
|
|
49
49
|
|
|
50
|
-
spec.add_runtime_dependency("red-datasets", ">= 0.1.
|
|
50
|
+
spec.add_runtime_dependency("red-datasets", ">= 0.1.6")
|
|
51
51
|
end
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2021 Sutou Kouhei <kou@clear-code.com>
|
|
1
|
+
# Copyright (C) 2021-2023 Sutou Kouhei <kou@clear-code.com>
|
|
2
2
|
#
|
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
|
4
4
|
# it under the terms of the GNU General Public License as published by
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
# You should have received a copy of the GNU General Public License
|
|
14
14
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
15
15
|
|
|
16
|
-
require "datasets"
|
|
16
|
+
require "datasets/lazy"
|
|
17
17
|
|
|
18
18
|
require_relative "synonym"
|
|
19
19
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: groonga-synonym
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sutou Kouhei
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-05-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: red-datasets
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.1.
|
|
19
|
+
version: 0.1.6
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.1.
|
|
26
|
+
version: 0.1.6
|
|
27
27
|
description: ''
|
|
28
28
|
email:
|
|
29
29
|
- kou@clear-code.com
|
|
@@ -49,7 +49,7 @@ homepage: https://github.com/groonga/groonga-synonym
|
|
|
49
49
|
licenses:
|
|
50
50
|
- GPL-3.0+
|
|
51
51
|
metadata: {}
|
|
52
|
-
post_install_message:
|
|
52
|
+
post_install_message:
|
|
53
53
|
rdoc_options: []
|
|
54
54
|
require_paths:
|
|
55
55
|
- lib
|
|
@@ -64,8 +64,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
64
64
|
- !ruby/object:Gem::Version
|
|
65
65
|
version: '0'
|
|
66
66
|
requirements: []
|
|
67
|
-
rubygems_version: 3.
|
|
68
|
-
signing_key:
|
|
67
|
+
rubygems_version: 3.5.0.dev
|
|
68
|
+
signing_key:
|
|
69
69
|
specification_version: 4
|
|
70
70
|
summary: Groonga synonym provides tools for synonym of Groonga families.
|
|
71
71
|
test_files: []
|