jisho_sort 0.0.4 → 0.0.5
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 +6 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6f34b1e1e65547a1ca96b496001790e19224badc2c9c119c1681397ad223b29
|
4
|
+
data.tar.gz: 473a6fe28f59d5c34d3a9e2e440fd1c621e25178f5c03c0292d150cd9b4dce84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b93faf00d5c975b886c6de1c02624c8a39a25371c6fa70931cf94f18dcbde4e14a37c182e15588666404f243d8e428512fcb299953ad668018615e328e79c66c
|
7
|
+
data.tar.gz: c91769438edbf7ffeb6276e113456809af00a1d03e0970d37ea31a6026804e2cc0953733cce2e10c5bb90de6159b3d4006019e1bb4bc2e4afb8a4bfd58936091
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# jisho_sort
|
2
2
|
|
3
3
|
`jisho_sort` is a Ruby sorting library based on MeCab.
|
4
|
-
It provides functionality to sort Japanese strings
|
4
|
+
It provides functionality to sort Japanese strings. These strings may contain a mix of Chinese and Japanese letters, sorted in dictionary order.
|
5
5
|
|
6
6
|
## Installation
|
7
7
|
|
@@ -47,7 +47,11 @@ $ ruby sample.rb
|
|
47
47
|
=> ["国境の長いトンネルを抜けると雪国であった", "メロスは激怒した", "ゆく川の流れは絶えずして、しかももとの水にあらず"]
|
48
48
|
```
|
49
49
|
|
50
|
-
|
51
50
|
## License
|
52
51
|
|
53
52
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
53
|
+
|
54
|
+
This project uses the following products:
|
55
|
+
|
56
|
+
- [natto](https://github.com/buruzaemon/natto): BSD 2-Clause License ([LICENSE file](https://github.com/buruzaemon/natto/blob/master/LICENSE))
|
57
|
+
- [ffi](https://github.com/ffi/ffi): BSD 3-Clause License ([LICENSE file](https://github.com/ffi/ffi/blob/master/LICENSE))
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jisho_sort
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- fvknk97034
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: ffi
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.6.
|
72
|
+
rubygems_version: 3.6.9
|
73
73
|
specification_version: 4
|
74
74
|
summary: Sort Japanese letters in dictionary order.
|
75
75
|
test_files: []
|