jisho_sort 0.0.4 → 0.0.6

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -2
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41f666958761dc5e5711afecd54251bcb842a22d7847f353b43f8b5f6bf13955
4
- data.tar.gz: d16e215825dea06517136fda43e2c8901e694ee6da48e9e291138dcbec5cf418
3
+ metadata.gz: aba2570b59095b9da028f84ff3d763f186faad44ef3348a1a02492c7966cc777
4
+ data.tar.gz: 8d7df8218ac18575048d1e1c4c591b38f35b33682f81c5d58f43736e04095964
5
5
  SHA512:
6
- metadata.gz: d45208eab49f4ab3ed4400620593e6db8003b854c41c836b2013fc1ab99a82cda71b0ec1108086d69262ef71a18c21f1a5300a46bccb9e34478b7faa1b3f88fb
7
- data.tar.gz: 364734027bfb93d88f1fd4ec1cd7f1b3a4b2624ad43ad5131c727367b82ef06210f1a296782b9ff0c78dc5508b6357d63ad5c706514d5cd93b696792e6f63edb
6
+ metadata.gz: 3dc092d98d6578f9b39005ecf28d0ddec9066bddb4eb73919d881462e747b3926ed231936af020d7064c0f4109db358582c65a2c8658f3eaefb6688962b7e3e3
7
+ data.tar.gz: 4509ef0ba6ae82a7bca61e6b5387ecbe8d781d928ee96c2892abb38f0fb54d6a2475e1ff4009cd3e993dd862e8a1b229e3c06842f223a293e84c103e4a708ff1
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 containing a mix of Chinese and Japanese Letters in dictionary order.
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
 
@@ -38,6 +38,7 @@ array = [
38
38
  'メロスは激怒した',
39
39
  '国境の長いトンネルを抜けると雪国であった'
40
40
  ]
41
+ p array.jisho_sort
41
42
  ```
42
43
 
43
44
  When you run this code, you will get the following result:
@@ -47,7 +48,11 @@ $ ruby sample.rb
47
48
  => ["国境の長いトンネルを抜けると雪国であった", "メロスは激怒した", "ゆく川の流れは絶えずして、しかももとの水にあらず"]
48
49
  ```
49
50
 
50
-
51
51
  ## License
52
52
 
53
53
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
54
+
55
+ This project uses the following products:
56
+
57
+ - [natto](https://github.com/buruzaemon/natto): BSD 2-Clause License ([LICENSE file](https://github.com/buruzaemon/natto/blob/master/LICENSE))
58
+ - [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
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - fvknk97034
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-09 00:00:00.000000000 Z
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.2
72
+ rubygems_version: 3.6.9
73
73
  specification_version: 4
74
74
  summary: Sort Japanese letters in dictionary order.
75
75
  test_files: []