jisho_sort 0.0.3 → 0.0.4
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/LICENSE +21 -0
- data/README.md +2 -2
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41f666958761dc5e5711afecd54251bcb842a22d7847f353b43f8b5f6bf13955
|
4
|
+
data.tar.gz: d16e215825dea06517136fda43e2c8901e694ee6da48e9e291138dcbec5cf418
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d45208eab49f4ab3ed4400620593e6db8003b854c41c836b2013fc1ab99a82cda71b0ec1108086d69262ef71a18c21f1a5300a46bccb9e34478b7faa1b3f88fb
|
7
|
+
data.tar.gz: 364734027bfb93d88f1fd4ec1cd7f1b3a4b2624ad43ad5131c727367b82ef06210f1a296782b9ff0c78dc5508b6357d63ad5c706514d5cd93b696792e6f63edb
|
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
@@ -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
|
31
|
+
Here's a basic example of how to use jisho_sort:
|
32
32
|
|
33
33
|
```ruby
|
34
34
|
require 'jisho_sort'
|
@@ -44,7 +44,7 @@ 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
50
|
|
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.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- fvknk97034
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-09 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/
|
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/
|
57
|
+
source_code_uri: https://github.com/fvknk97034/jisho_sort.git
|
57
58
|
rdoc_options: []
|
58
59
|
require_paths:
|
59
60
|
- lib
|