jisho_sort 0.0.3 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +21 -0
  3. data/README.md +8 -4
  4. metadata +7 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c275e0f553a731cbdb17c533cf9475d4692eea4705c6e27aa95b8be62569b13
4
- data.tar.gz: 6aaaa40dddaf3aaa3344f1f3b11aa057856bac09035ae5c4196216c88597744e
3
+ metadata.gz: e6f34b1e1e65547a1ca96b496001790e19224badc2c9c119c1681397ad223b29
4
+ data.tar.gz: 473a6fe28f59d5c34d3a9e2e440fd1c621e25178f5c03c0292d150cd9b4dce84
5
5
  SHA512:
6
- metadata.gz: 767293b6e5788549ec628359096504a2870b766bdef4ae1a843e0057a66ff64b03c2403598c3b7485deeb42888a0b6ca051a6718bf32ecfbbb70300ddf4eefbc
7
- data.tar.gz: f8593ae36f6c3c2dce3e9ef51aed91ef813b321d3e93016159249b46306f4c1f376d78ff98fe99250912a5e74a56befdcbc54dbd3be31187dc293ef3ec16f3db
6
+ metadata.gz: b93faf00d5c975b886c6de1c02624c8a39a25371c6fa70931cf94f18dcbde4e14a37c182e15588666404f243d8e428512fcb299953ad668018615e328e79c66c
7
+ data.tar.gz: c91769438edbf7ffeb6276e113456809af00a1d03e0970d37ea31a6026804e2cc0953733cce2e10c5bb90de6159b3d4006019e1bb4bc2e4afb8a4bfd58936091
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 fvknk97034
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
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
 
@@ -28,7 +28,7 @@ gem install jisho_sort
28
28
 
29
29
  ## Usage
30
30
 
31
- Here's a basic example of how to use JishoSort:
31
+ Here's a basic example of how to use jisho_sort:
32
32
 
33
33
  ```ruby
34
34
  require 'jisho_sort'
@@ -44,10 +44,14 @@ When you run this code, you will get the following result:
44
44
 
45
45
  ```sh
46
46
  $ 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.3
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
- - fvknk
7
+ - fvknk97034
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-24 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
@@ -42,6 +42,7 @@ executables: []
42
42
  extensions: []
43
43
  extra_rdoc_files: []
44
44
  files:
45
+ - LICENSE
45
46
  - README.md
46
47
  - lib/jisho_sort.rb
47
48
  - lib/jisho_sort/comparable.rb
@@ -49,11 +50,11 @@ files:
49
50
  - lib/jisho_sort/sortable.rb
50
51
  - lib/jisho_sort/string.rb
51
52
  - lib/jisho_sort/tokenizable.rb
52
- homepage: https://github.com/fvknk
53
+ homepage: https://github.com/fvknk97034
53
54
  licenses: []
54
55
  metadata:
55
56
  rubygems_mfa_required: 'true'
56
- source_code_uri: https://github.com/fvknk/jisho_sort.git
57
+ source_code_uri: https://github.com/fvknk97034/jisho_sort.git
57
58
  rdoc_options: []
58
59
  require_paths:
59
60
  - lib
@@ -68,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
69
  - !ruby/object:Gem::Version
69
70
  version: '0'
70
71
  requirements: []
71
- rubygems_version: 3.6.2
72
+ rubygems_version: 3.6.9
72
73
  specification_version: 4
73
74
  summary: Sort Japanese letters in dictionary order.
74
75
  test_files: []