daidai 0.2.4 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bb2777a6c22327a37198ea5ebb74da633638127869539c6cd507eba1b7d24e7
4
- data.tar.gz: ab0172739b26f143c985cef073b7d4c4ec7f4950e7170c508ca8a2f2a2bf5928
3
+ metadata.gz: 71d9328e95b0ca6e9597020c5c60128f5a699a5bb68c1bb9e24881bf2ebd1276
4
+ data.tar.gz: 7e34ce14c5054479b186423bb1623dd519af4f05888a8fd63e5c1d3f12965e75
5
5
  SHA512:
6
- metadata.gz: 24ab765f86ce736e70bccb89c602238344a81357123ca4d05f5bda15841346fd6271c2534361c810d914163ecfb6a727764a4eb9f6755629fcce307833c4f734
7
- data.tar.gz: 866e4f2fdc072c88bad204e28a83c0bc40bbbe720e2d3ce32787f44122dbe26f0a2ca1ff8c907c82c79fa40136b8cb208d1a5c1f8a3c0738fad349133d45459e
6
+ metadata.gz: 2a8d2ac93b3bfe2f44ba0c8e38c3a070703b76a1e197d001b7646cb0b439dd12e0fb440f208f33ab9326b438667c3c103ecd5a350a8b7820f0369f0341e88ba6
7
+ data.tar.gz: bb4b1505f2646ea62d4fbcf7749f149ca0ac3d378c34fa7950194d20ac0759a13aec3840ec9aff5b37695b9c12b4951375cbc5d828de23906cd51093bb8402a2
data/CHANGELOG.md CHANGED
@@ -6,6 +6,16 @@ follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.5] - 2026-08-03
10
+
11
+ ### Removed
12
+
13
+ - `-気味`, added in 0.2.4. It reached 疲れ気味 → 疲れる by deriving from `-たい`, but
14
+ 気味 is not that kind of suffix: after a noun (風邪気味, 疲れ気味, 遅れ気味, which is
15
+ how Sudachi reads all three) both halves are already dictionary words and 風邪気味
16
+ is an entry in its own right, so the rule only ever competed with a better
17
+ answer. `-がち` stays: 忘れがち has no noun reading to compete with.
18
+
9
19
  ## [0.2.4] - 2026-08-03
10
20
 
11
21
  ### Added
@@ -25,7 +35,8 @@ follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
25
35
  - `-てください` (and 〜てちょうだい). ください is くださる's irregular imperative and does
26
36
  not conjugate further, so `-てくださる` never matched the commonest polite request
27
37
  in the language.
28
- - Further 連用形 suffixes: `-がち`, `-っぱなし`, `-気味`, `-かねる`.
38
+ - Further 連用形 suffixes: `-がち`, `-っぱなし`, `-かねる`. (`-気味` was added here too
39
+ and withdrawn in 0.2.5.)
29
40
 
30
41
  〜かける is excluded for the same reason as 〜だす: the substring にかける strips to
31
42
  にる (煮る), a real word, so it would mis-read 気にかける.
@@ -89,8 +89,7 @@ module Daidai
89
89
  "-てくれる" => "done for me (-tekureru)", "-てくださる" => "done for me, honorific (-tekudasaru)",
90
90
  "-てもらう" => "having someone do (-temorau)", "-ていただく" => "having someone do, humble (-teitadaku)",
91
91
  "-てください" => "polite request (-tekudasai)",
92
- "-がち" => "tends to (-gachi)", "-っぱなし" => "left as it is (-ppanashi)",
93
- "-気味" => "a touch of (-gimi)", "-かねる" => "cannot (-kaneru)"
92
+ "-がち" => "tends to (-gachi)", "-っぱなし" => "left as it is (-ppanashi)", "-かねる" => "cannot (-kaneru)"
94
93
  }.freeze
95
94
 
96
95
  # One deinflection rule: a test for the inflected form and how to undo it.
@@ -11868,156 +11868,6 @@
11868
11868
  }
11869
11869
  ]
11870
11870
  },
11871
- "-気味": {
11872
- "name": "-気味",
11873
- "description": "A touch of.\nUsage: attach 気味 to the continuative form (連用形).",
11874
- "rules": [
11875
- {
11876
- "type": "suffix",
11877
- "conditionsIn": [],
11878
- "conditionsOut": [
11879
- "v1"
11880
- ],
11881
- "inflected": "気味",
11882
- "deinflected": "る"
11883
- },
11884
- {
11885
- "type": "suffix",
11886
- "conditionsIn": [],
11887
- "conditionsOut": [
11888
- "v5"
11889
- ],
11890
- "inflected": "い気味",
11891
- "deinflected": "う"
11892
- },
11893
- {
11894
- "type": "suffix",
11895
- "conditionsIn": [],
11896
- "conditionsOut": [
11897
- "v5"
11898
- ],
11899
- "inflected": "き気味",
11900
- "deinflected": "く"
11901
- },
11902
- {
11903
- "type": "suffix",
11904
- "conditionsIn": [],
11905
- "conditionsOut": [
11906
- "v5"
11907
- ],
11908
- "inflected": "ぎ気味",
11909
- "deinflected": "ぐ"
11910
- },
11911
- {
11912
- "type": "suffix",
11913
- "conditionsIn": [],
11914
- "conditionsOut": [
11915
- "v5"
11916
- ],
11917
- "inflected": "し気味",
11918
- "deinflected": "す"
11919
- },
11920
- {
11921
- "type": "suffix",
11922
- "conditionsIn": [],
11923
- "conditionsOut": [
11924
- "v5"
11925
- ],
11926
- "inflected": "ち気味",
11927
- "deinflected": "つ"
11928
- },
11929
- {
11930
- "type": "suffix",
11931
- "conditionsIn": [],
11932
- "conditionsOut": [
11933
- "v5"
11934
- ],
11935
- "inflected": "に気味",
11936
- "deinflected": "ぬ"
11937
- },
11938
- {
11939
- "type": "suffix",
11940
- "conditionsIn": [],
11941
- "conditionsOut": [
11942
- "v5"
11943
- ],
11944
- "inflected": "び気味",
11945
- "deinflected": "ぶ"
11946
- },
11947
- {
11948
- "type": "suffix",
11949
- "conditionsIn": [],
11950
- "conditionsOut": [
11951
- "v5"
11952
- ],
11953
- "inflected": "み気味",
11954
- "deinflected": "む"
11955
- },
11956
- {
11957
- "type": "suffix",
11958
- "conditionsIn": [],
11959
- "conditionsOut": [
11960
- "v5"
11961
- ],
11962
- "inflected": "り気味",
11963
- "deinflected": "る"
11964
- },
11965
- {
11966
- "type": "suffix",
11967
- "conditionsIn": [],
11968
- "conditionsOut": [
11969
- "vz"
11970
- ],
11971
- "inflected": "じ気味",
11972
- "deinflected": "ずる"
11973
- },
11974
- {
11975
- "type": "suffix",
11976
- "conditionsIn": [],
11977
- "conditionsOut": [
11978
- "vs"
11979
- ],
11980
- "inflected": "し気味",
11981
- "deinflected": "する"
11982
- },
11983
- {
11984
- "type": "suffix",
11985
- "conditionsIn": [],
11986
- "conditionsOut": [
11987
- "vs"
11988
- ],
11989
- "inflected": "為気味",
11990
- "deinflected": "為る"
11991
- },
11992
- {
11993
- "type": "suffix",
11994
- "conditionsIn": [],
11995
- "conditionsOut": [
11996
- "vk"
11997
- ],
11998
- "inflected": "き気味",
11999
- "deinflected": "くる"
12000
- },
12001
- {
12002
- "type": "suffix",
12003
- "conditionsIn": [],
12004
- "conditionsOut": [
12005
- "vk"
12006
- ],
12007
- "inflected": "来気味",
12008
- "deinflected": "来る"
12009
- },
12010
- {
12011
- "type": "suffix",
12012
- "conditionsIn": [],
12013
- "conditionsOut": [
12014
- "vk"
12015
- ],
12016
- "inflected": "來気味",
12017
- "deinflected": "來る"
12018
- }
12019
- ]
12020
- },
12021
11871
  "-かねる": {
12022
11872
  "name": "-かねる",
12023
11873
  "description": "Cannot bring oneself to.\nUsage: attach かねる to the continuative form (連用形).",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Daidai
4
- VERSION = "0.2.4"
4
+ VERSION = "0.2.5"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daidai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - davafons