medieval_latina 3.1.0 → 3.1.1

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: 0dd902526791ea82b288d966db1bf6ac699ca6846256412aa60c9b685253e333
4
- data.tar.gz: 9abfa510fa6c2f3dbc21b4e90b0392addc45a932c244d39cc6434ca46a810639
3
+ metadata.gz: f38ebdf6480281f444c3142a6c0dd8ef3b805c34ab45710dd6af46b904f5bbc5
4
+ data.tar.gz: ec33854ab71c933af1da4fe44055ac94d0cf517894a60ebd9addbf42058ee7d5
5
5
  SHA512:
6
- metadata.gz: 60e4c5925a37ac2ccc8e08ffcefd35a0d61cb8e4b46c81d1298d703dc31791b3ff7d7aabf828533d3e82842d5867eb7cc5a4aaee4422d6de4fc75f733aa58566
7
- data.tar.gz: 5822082352ae540e0aa67b49ad2b20f3744502c36dcb7ec96d696fd76bd1469a31a0210901caddd76a21189abecf682a129a1a094e84c3c100e52a3e1166140a
6
+ metadata.gz: 951bb7a9259f812296866752be7ff0b1a4526bf0a7521b72c6465de4e2a922887922f443070b8b990e4a57a8a48ee8e76a0c67b78720598890ab71173379e924
7
+ data.tar.gz: 363b7fe7a6331397c0e11ade30f4c4ef6db456d3aac200919e308b318f08941df25c552fa095f4be6b3937c19a9ffd48e53fe1b172b83999a4b4e224506a837f
data/.tool-versions CHANGED
@@ -1 +1,2 @@
1
+ nodejs 24.2.0
1
2
  ruby 3.4.1
data/CLAUDE.md ADDED
@@ -0,0 +1,60 @@
1
+ # CLAUDE.md
2
+
3
+ This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
4
+
5
+ ## Development Commands
6
+
7
+ - **Setup**: `bin/setup` - Install dependencies with bundle install
8
+ - **Tests**: `rake spec` or `bundle exec rspec` - Run the full test suite
9
+ - **Linting**: `bin/lint` - Run StandardRB linter and jsonlint on dictionary.json
10
+ - **Build lexicons**: `bin/build` - Regenerate PLS lexicon files from dictionary.json
11
+ - **Console**: `bin/console` - Interactive prompt for experimentation
12
+ - **Install gem locally**: `bundle exec rake install`
13
+ - **Release**: `bundle exec rake release` (after updating version.rb)
14
+
15
+ ## Architecture Overview
16
+
17
+ This is a Ruby gem that converts medieval Latin text to phonetic English for text-to-speech engines. The architecture consists of:
18
+
19
+ ### Core Components
20
+
21
+ - **MedievalLatina class** (`lib/medieval_latina.rb`): Main interface with class methods for text conversion and linguistic analysis
22
+ - `MedievalLatina[text]` - Primary conversion method
23
+ - Part-of-speech helpers: `verb?`, `noun?`, `adjective?`, `adverb?`
24
+ - `pronunciations_for(words)` - Extract IPA pronunciations for lexicon building
25
+
26
+ - **Dictionary system** (`data/dictionary.json`): Large JSON file containing Latin words with metadata including:
27
+ - IPA pronunciations
28
+ - Part of speech classifications
29
+ - Custom pronunciation overrides
30
+
31
+ - **Lexicon generation** (`lib/medieval_latina/lexicon_builder.rb`, `lib/medieval_latina/lexicon.rb`): Creates PLS (Pronunciation Lexicon Specification) files for AWS Polly and other TTS engines
32
+
33
+ ### Phonetic Conversion Logic
34
+
35
+ The main conversion algorithm handles:
36
+ - Vowel teams: ae→ay, oe→ay, au→ou
37
+ - Consonant transformations: c→ch/k (soft/hard), g→j/g, j→y, t→ts/t, x→ks
38
+ - Consonant teams: gn→n-y, qu→kw
39
+ - Text preprocessing with I18n transliteration
40
+
41
+ ### Data Flow
42
+
43
+ 1. Text input → word tokenization → dictionary lookup
44
+ 2. If word has custom pronunciation → use it
45
+ 3. Otherwise → apply phonetic transformation rules
46
+ 4. Rejoin with proper punctuation spacing
47
+
48
+ ## Key Files
49
+
50
+ - `lib/medieval_latina.rb` - Main conversion logic and API
51
+ - `data/dictionary.json` - Latin word database (400KB+)
52
+ - `bin/build` - Splits dictionary into multiple PLS files in lexicons/ directory
53
+ - `.standard.yml` - StandardRB configuration (Ruby 3.2, parallel linting)
54
+ - `medieval_latina.gemspec` - Gem specification (requires Ruby >= 3.2.0)
55
+
56
+ ## Testing
57
+
58
+ - RSpec test suite in `spec/`
59
+ - Configuration in `.rspec` with documentation format
60
+ - Run specific tests: `bundle exec rspec spec/specific_spec.rb`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- medieval_latina (3.1.0)
4
+ medieval_latina (3.1.1)
5
5
  i18n
6
6
 
7
7
  GEM
@@ -19,8 +19,8 @@ GEM
19
19
  optimist (~> 3)
20
20
  language_server-protocol (3.17.0.3)
21
21
  lint_roller (1.1.0)
22
- mini_portile2 (2.8.6)
23
- nokogiri (1.18.0)
22
+ mini_portile2 (2.8.9)
23
+ nokogiri (1.18.9)
24
24
  mini_portile2 (~> 2.8.2)
25
25
  racc (~> 1.4)
26
26
  oj (3.16.5)
@@ -32,11 +32,11 @@ GEM
32
32
  parser (3.3.4.2)
33
33
  ast (~> 2.4.1)
34
34
  racc
35
- racc (1.7.3)
35
+ racc (1.8.1)
36
36
  rainbow (3.1.1)
37
37
  rake (12.3.3)
38
38
  regexp_parser (2.9.2)
39
- rexml (3.3.9)
39
+ rexml (3.4.2)
40
40
  rspec (3.9.0)
41
41
  rspec-core (~> 3.9.0)
42
42
  rspec-expectations (~> 3.9.0)
data/data/dictionary.json CHANGED
@@ -165,15 +165,15 @@
165
165
  "ipa": "ak",
166
166
  "position": 110},
167
167
  "alius":
168
- {"meaning": "other, another; ālias: at another time",
168
+ {"meaning": "other, another",
169
169
  "part": "Adjective",
170
170
  "gender": "masculine",
171
171
  "ipa": "aljus",
172
172
  "position": 111},
173
173
  "alia":
174
- {"meaning": "other, another; ālias: at another time", "part": "Adjective", "gender": "feminine", "ipa": "alja", "position": 112},
174
+ {"meaning": "other, another", "part": "Adjective", "gender": "feminine", "ipa": "alja", "position": 112},
175
175
  "aliud":
176
- {"meaning": "other, another; ālias: at another time", "part": "Adjective", "gender": "neuter", "ipa": "aljud", "position": 113},
176
+ {"meaning": "other, another", "part": "Adjective", "gender": "neuter", "ipa": "aljud", "position": 113},
177
177
  "rēs":
178
178
  {"meaning": "thing (rēs pūblica, commonwealth; rēs familiāris, family property, estate; rēs mīlitāris, art of war; rēs novae, revolution)",
179
179
  "part": "Noun",
@@ -221,12 +221,12 @@
221
221
  "ipa": "ne",
222
222
  "position": 145},
223
223
  "manus": {"meaning": "hand; band of men", "part": "Noun", "gender": "feminine", "ipa": "manus", "position": 146},
224
- "nūllus": {"meaning": "not any, no one", "part": "Adjective", "gender": "masculine", "ipa": "nullus", "position": 147},
225
- "nullus": {"meaning": "not any, no one", "part": "Adjective", "gender": "masculine", "ipa": "nullus", "position": 148},
226
- "nūlla": {"meaning": "not any, no one", "part": "Adjective", "gender": "feminine", "ipa": "nulla", "position": 149},
227
- "nulla": {"meaning": "not any, no one", "part": "Adjective", "gender": "feminine", "ipa": "nulla", "position": 150},
228
- "nūllum": {"meaning": "not any, no one", "part": "Adjective", "gender": "neuter", "ipa": "nullum", "position": 151},
229
- "nullum": {"meaning": "not any, no one", "part": "Adjective", "gender": "neuter", "ipa": "nullum", "position": 152},
224
+ "nūllus": {"meaning": "no, none", "part": "Adjective", "gender": "masculine", "ipa": "nullus", "position": 147},
225
+ "nullus": {"meaning": "no, none", "part": "Adjective", "gender": "masculine", "ipa": "nullus", "position": 148},
226
+ "nūlla": {"meaning": "no, none", "part": "Adjective", "gender": "feminine", "ipa": "nulla", "position": 149},
227
+ "nulla": {"meaning": "no, none", "part": "Adjective", "gender": "feminine", "ipa": "nulla", "position": 150},
228
+ "nūllum": {"meaning": "no, none", "part": "Adjective", "gender": "neuter", "ipa": "nullum", "position": 151},
229
+ "nullum": {"meaning": "no, none", "part": "Adjective", "gender": "neuter", "ipa": "nullum", "position": 152},
230
230
  "nunc": {"meaning": "now", "part": "Adverb", "ipa": "nunk", "position": 153},
231
231
  "nōs": {"meaning": "we", "part": "Pronoun", "ipa": "nos", "position": 154},
232
232
  "nos": {"meaning": "we", "part": "Pronoun", "ipa": "nos", "position": 155},
@@ -412,7 +412,7 @@
412
412
  "position": 313},
413
413
  "pro": {"meaning": "for, on behalf of, in proportion to", "part": "Preposition", "ipa": "pro", "position": 314},
414
414
  "quisquis": {"meaning": "whoever, whichever", "part": "Pronoun", "ipa": "kʷiskʷis", "position": 315},
415
- "quidquid": {"meaning": "whoever, whichever", "part": "Pronoun", "ipa": "kʷidkʷid", "position": 316},
415
+ "quidquid": {"meaning": "whatever; anything that ...", "part": "Pronoun", "ipa": "kʷidkʷid", "position": 316},
416
416
  "vos": {"meaning": "you (pl.)", "part": "Adjective", "declension": "1st and 2nd", "ipa": "vos", "position": 317},
417
417
  "capio": {"meaning": "seize", "part": "Verb", "conjugation": "3rd -iō", "ipa": "kapio", "position": 318},
418
418
  "capere": {"meaning": "seize", "part": "Verb", "conjugation": "3rd -iō", "ipa": "kapɛrɛ", "position": 319},
@@ -486,8 +486,8 @@
486
486
  "relinquō": {"meaning": "abandon", "part": "Verb", "conjugation": "3rd", "ipa": "rɛlinkʷoː", "position": 350},
487
487
  "relinquo": {"meaning": "abandon", "part": "Verb", "conjugation": "3rd", "ipa": "rɛlinkʷoː", "position": 351},
488
488
  "relinquere": {"meaning": "abandon", "part": "Verb", "conjugation": "3rd", "ipa": "rɛlinkʷɛrɛ", "position": 352},
489
- "relinquī": {"meaning": "abandon", "part": "Verb", "conjugation": "3rd", "ipa": "rɛlinkʷiː", "position": 353},
490
- "relinqui": {"meaning": "abandon", "part": "Verb", "conjugation": "3rd", "ipa": "rɛlinkʷiː", "position": 354},
489
+ "relinquī": {"meaning": "to be left (behind), remain", "part": "Verb", "conjugation": "3rd", "ipa": "rɛlinkʷiː", "position": 353},
490
+ "relinqui": {"meaning": "to be left (behind), remain", "part": "Verb", "conjugation": "3rd", "ipa": "rɛlinkʷiː", "position": 354},
491
491
  "relictum": {"meaning": "abandon", "part": "Verb", "conjugation": "3rd", "ipa": "rɛliktum", "position": 355},
492
492
  "saepe": {"meaning": "often", "part": "Adverb", "ipa": "sɛpɛ", "position": 356},
493
493
  "fīō": {"meaning": "become, happen, be done", "part": "Verb", "conjugation": "Irregular", "ipa": "fiːo", "position": 357},
@@ -4695,20 +4695,20 @@
4695
4695
  "terram": {"meaning": "earth, land, ground", "part": "Noun", "pronunciation": "terram", "position": 3147},
4696
4696
  "toga": {"meaning": "toga", "part": "Noun", "pronunciation": "toga", "position": 3148},
4697
4697
  "undeviginti": {"meaning": "nineteen", "part": "Adjective", "pronunciation": "oon-day-veejin-tee", "position": 3149},
4698
- "acerbus": { "part": "Adjective", "ipa": "ˈakɛrbʊs" },
4699
- "adultus": { "part": "Adjective", "ipa": "aˈdʊltʊs" },
4700
- "aeguus": { "part": "Adjective", "ipa": "ˈaɛɡuːs" },
4701
- "asper": { "part": "Adjective", "ipa": "ˈaspɛr" },
4702
- "avarus": { "part": "Adjective", "ipa": "ˈaʋarʊs" },
4703
- "bellus": { "part": "Adjective", "ipa": "ˈbɛllʊs" },
4704
- "civilis": { "part": "Adjective", "ipa": "ˈkɪʋɪlɪs" },
4705
- "conscius": { "part": "Adjective", "ipa": "ˈkɔnskɪʊs" },
4706
- "crudelis": { "part": "Adjective", "ipa": "ˈkrudɛlɪs" },
4707
- "cupidus": { "part": "Adjective", "ipa": "ˈkupɪdʊs" },
4708
- "demens": { "part": "Adjective", "ipa": "ˈdɛmɛns" },
4698
+ "acerbus": { "meaning": "bitter, harsh; severe", "part": "Adjective", "ipa": "ˈakɛrbʊs" },
4699
+ "adultus": { "meaning": "adult, mature; grown", "part": "Adjective", "ipa": "aˈdʊltʊs" },
4700
+ "aeguus": { "meaning": "equal, level; fair", "part": "Adjective", "ipa": "ˈaɛɡuːs" },
4701
+ "asper": { "meaning": "rough, harsh; difficult", "part": "Adjective", "ipa": "ˈaspɛr" },
4702
+ "avarus": { "meaning": "greedy, avaricious", "part": "Adjective", "ipa": "ˈaʋarʊs" },
4703
+ "bellus": { "meaning": "beautiful, lovely; fine", "part": "Adjective", "ipa": "ˈbɛllʊs" },
4704
+ "civilis": { "meaning": "civil, civic; courteous", "part": "Adjective", "ipa": "ˈkɪʋɪlɪs" },
4705
+ "conscius": { "meaning": "conscious; aware; guilty", "part": "Adjective", "ipa": "ˈkɔnskɪʊs" },
4706
+ "crudelis": { "meaning": "cruel, harsh", "part": "Adjective", "ipa": "ˈkrudɛlɪs" },
4707
+ "cupidus": { "meaning": "eager, desirous", "part": "Adjective", "ipa": "ˈkupɪdʊs" },
4708
+ "demens": { "meaning": "mad, insane; foolish", "part": "Adjective", "ipa": "ˈdɛmɛns" },
4709
4709
  "desidiosus": { "part": "Adjective", "ipa": "dɛsɪˈdjɔsʊs" },
4710
- "dignus": { "part": "Adjective", "ipa": "ˈdɪɲnʊs" },
4711
- "doctus": { "part": "Adjective", "ipa": "ˈdɔktʊs" },
4710
+ "dignus": { "meaning": "worthy, deserving", "part": "Adjective", "ipa": "ˈdɪɲnʊs" },
4711
+ "doctus": { "meaning": "learned, skilled", "part": "Adjective", "ipa": "ˈdɔktʊs" },
4712
4712
  "eloquens": { "part": "Adjective", "ipa": "ɛˈlɔkwɛns" },
4713
4713
  "eximius": { "part": "Adjective", "ipa": "ɛkˈsɪmɪʊs" },
4714
4714
  "fortunatus": { "part": "Adjective", "ipa": "fɔrtʊˈnatʊs" },
@@ -4745,44 +4745,44 @@
4745
4745
  "vehemens": { "part": "Adjective", "ipa": "ʋɛˈhɛmɛns" },
4746
4746
  "velox": { "part": "Adjective", "ipa": "ˈʋɛlɔks" },
4747
4747
  "vetus": { "part": "Adjective", "ipa": "ˈʋɛtʊs" },
4748
- "abhinc": { "part": "Adverb", "ipa": "ˈabɪŋk" },
4749
- "admodum": { "part": "Adverb", "ipa": "adˈmɔdʊm" },
4750
- "alias": { "part": "Adverb", "ipa": "ˈaliːas" },
4751
- "aliqua": { "part": "Adverb", "ipa": "ˈalikʷa" },
4752
- "amplius": { "part": "Adverb", "ipa": "ˈampliʊs" },
4753
- "bis": { "part": "Adverb", "ipa": "bɪs" },
4754
- "clam": { "part": "Adverb", "ipa": "klam" },
4755
- "comminus": { "part": "Adverb", "ipa": "kɔmˈmɪnʊs" },
4756
- "cotidie": { "part": "Adverb", "ipa": "kɔˈtidiɛ" },
4757
- "demisse": { "part": "Adverb", "ipa": "dɛˈmɪssɛ" },
4758
- "diligenter": { "part": "Adverb", "ipa": "dɪlɪˈɡɛntɛr" },
4759
- "fortasse": { "part": "Adverb", "ipa": "fɔrˈtassɛ" },
4760
- "fortiter": { "part": "Adverb", "ipa": "fɔrˈtitɛr" },
4761
- "graviter": { "part": "Adverb", "ipa": "ˈgraʋitɛr" },
4762
- "interdum": { "part": "Adverb", "ipa": "ɪntɛrˈdʊm" },
4763
- "intus": { "part": "Adverb", "ipa": "ˈintʊs" },
4764
- "palam": { "part": "Adverb", "ipa": "ˈpalam" },
4765
- "partim": { "part": "Adverb", "ipa": "ˈpartɪm" },
4766
- "passim": { "part": "Adverb", "ipa": "ˈpassɪm" },
4767
- "plane": { "part": "Adverb", "ipa": "ˈplanɛ" },
4768
- "recte": { "part": "Adverb", "ipa": "ˈrɛktɛ" },
4769
- "retro": { "part": "Adverb", "ipa": "ˈrɛtro" },
4770
- "statim": { "part": "Adverb", "ipa": "ˈstatɪm" },
4771
- "ultro": { "part": "Adverb", "ipa": "ˈʊltro" },
4772
- "utinam": { "part": "Adverb", "ipa": "ʊˈtinam" },
4773
- "accusator": { "part": "Noun", "ipa": "akˈkuːsator" },
4774
- "acerbitas": { "part": "Noun", "ipa": "aˈkɛrbitas" },
4775
- "adulatio": { "part": "Noun", "ipa": "aduˈlatio" },
4776
- "adulescens": { "part": "Noun", "ipa": "aduˈleskens" },
4777
- "adulescentia": { "part": "Noun", "ipa": "adulesˈkentia" },
4778
- "aedificium": { "part": "Noun", "ipa": "ɛːdiˈfikium" },
4779
- "aequitas": { "part": "Noun", "ipa": "ɛːˈkwitas" },
4780
- "agricola": { "part": "Noun", "ipa": "aˈɡrikola" },
4781
- "agricultura": { "part": "Noun", "ipa": "aɡrikulˈtura" },
4782
- "ambitio": { "part": "Noun", "ipa": "amˈbitio" },
4783
- "ancilla": { "part": "Noun", "ipa": "ˈankilla" },
4784
- "angellus": { "part": "Noun", "ipa": "anˈɡellus" },
4785
- "animal": { "part": "Noun", "ipa": "aˈnimal" },
4748
+ "abhinc": { "meaning": "ago, from now", "part": "Adverb", "ipa": "ˈabɪŋk" },
4749
+ "admodum": { "meaning": "very much, quite", "part": "Adverb", "ipa": "adˈmɔdʊm" },
4750
+ "alias": { "meaning": "at another time", "part": "Adverb", "ipa": "ˈaliːas" },
4751
+ "aliqua": { "meaning": "somehow, in some way", "part": "Adverb", "ipa": "ˈalikʷa" },
4752
+ "amplius": { "meaning": "more, further", "part": "Adverb", "ipa": "ˈampliʊs" },
4753
+ "bis": { "meaning": "twice, two times", "part": "Adverb", "ipa": "bɪs" },
4754
+ "clam": { "meaning": "secretly, stealthily", "part": "Adverb", "ipa": "klam" },
4755
+ "comminus": { "meaning": "at close quarters", "part": "Adverb", "ipa": "kɔmˈmɪnʊs" },
4756
+ "cotidie": { "meaning": "daily, every day", "part": "Adverb", "ipa": "kɔˈtidiɛ" },
4757
+ "demisse": { "meaning": "humbly, submissively", "part": "Adverb", "ipa": "dɛˈmɪssɛ" },
4758
+ "diligenter": { "meaning": "carefully, diligently", "part": "Adverb", "ipa": "dɪlɪˈɡɛntɛr" },
4759
+ "fortasse": { "meaning": "perhaps, maybe", "part": "Adverb", "ipa": "fɔrˈtassɛ" },
4760
+ "fortiter": { "meaning": "bravely, strongly", "part": "Adverb", "ipa": "fɔrˈtitɛr" },
4761
+ "graviter": { "meaning": "heavily, seriously", "part": "Adverb", "ipa": "ˈgraʋitɛr" },
4762
+ "interdum": { "meaning": "sometimes, at times", "part": "Adverb", "ipa": "ɪntɛrˈdʊm" },
4763
+ "intus": { "meaning": "within, inside", "part": "Adverb", "ipa": "ˈintʊs" },
4764
+ "palam": { "meaning": "openly, publicly", "part": "Adverb", "ipa": "ˈpalam" },
4765
+ "partim": { "meaning": "partly, in part", "part": "Adverb", "ipa": "ˈpartɪm" },
4766
+ "passim": { "meaning": "everywhere, throughout", "part": "Adverb", "ipa": "ˈpassɪm" },
4767
+ "plane": { "meaning": "clearly, plainly", "part": "Adverb", "ipa": "ˈplanɛ" },
4768
+ "recte": { "meaning": "rightly, correctly", "part": "Adverb", "ipa": "ˈrɛktɛ" },
4769
+ "retro": { "meaning": "backward, back", "part": "Adverb", "ipa": "ˈrɛtro" },
4770
+ "statim": { "meaning": "immediately, at once", "part": "Adverb", "ipa": "ˈstatɪm" },
4771
+ "ultro": { "meaning": "voluntarily, spontaneously", "part": "Adverb", "ipa": "ˈʊltro" },
4772
+ "utinam": { "meaning": "if only, would that", "part": "Adverb", "ipa": "ʊˈtinam" },
4773
+ "accusator": { "meaning": "accuser, prosecutor", "part": "Noun", "ipa": "akˈkuːsator" },
4774
+ "acerbitas": { "meaning": "bitterness, harshness", "part": "Noun", "ipa": "aˈkɛrbitas" },
4775
+ "adulatio": { "meaning": "flattery, fawning", "part": "Noun", "ipa": "aduˈlatio" },
4776
+ "adulescens": { "meaning": "young man, youth", "part": "Noun", "ipa": "aduˈleskens" },
4777
+ "adulescentia": { "meaning": "youth, young age", "part": "Noun", "ipa": "adulesˈkentia" },
4778
+ "aedificium": { "meaning": "building, structure", "part": "Noun", "ipa": "ɛːdiˈfikium" },
4779
+ "aequitas": { "meaning": "fairness, justice", "part": "Noun", "ipa": "ɛːˈkwitas" },
4780
+ "agricola": { "meaning": "farmer, cultivator", "part": "Noun", "ipa": "aˈɡrikola" },
4781
+ "agricultura": { "meaning": "agriculture, farming", "part": "Noun", "ipa": "aɡrikulˈtura" },
4782
+ "ambitio": { "meaning": "ambition; canvassing", "part": "Noun", "ipa": "amˈbitio" },
4783
+ "ancilla": { "meaning": "maidservant, slave girl", "part": "Noun", "ipa": "ˈankilla" },
4784
+ "angellus": { "meaning": "angel, messenger", "part": "Noun", "ipa": "anˈɡellus" },
4785
+ "animal": { "meaning": "animal, living being", "part": "Noun", "ipa": "aˈnimal" },
4786
4786
  "apparatus": { "part": "Noun", "ipa": "appaˈratus" },
4787
4787
  "aratrum": { "part": "Noun", "ipa": "ˈaratrum" },
4788
4788
  "arbitrium": { "part": "Noun", "ipa": "arˈbitrium" },
@@ -4882,28 +4882,28 @@
4882
4882
  "villa": { "part": "Noun", "ipa": "ˈvilla" },
4883
4883
  "vires": { "part": "Noun", "ipa": "ˈvires" },
4884
4884
  "visus": { "part": "Noun", "ipa": "ˈvisus" },
4885
- "accendo": { "part": "Verb", "ipa": "akˈtʃen.do" },
4886
- "ait": { "part": "Verb", "ipa": "ˈait" },
4887
- "alo": { "part": "Verb", "ipa": "ˈa.lo" },
4888
- "ambulo": { "part": "Verb", "ipa": "amˈbu.lo" },
4889
- "bello": { "part": "Verb", "ipa": "ˈbel.lo" },
4890
- "bibo": { "part": "Verb", "ipa": "ˈbi.bo" },
4891
- "caleo": { "part": "Verb", "ipa": "ˈka.le.o" },
4892
- "capto": { "part": "Verb", "ipa": "ˈkap.to" },
4893
- "carpo": { "part": "Verb", "ipa": "ˈkar.po" },
4894
- "castigo": { "part": "Verb", "ipa": "kasˈti.go" },
4895
- "cedo": { "part": "Verb", "ipa": "ˈtʃe.do" },
4896
- "ceno": { "part": "Verb", "ipa": "ˈtʃe.no" },
4897
- "censeo": { "part": "Verb", "ipa": "ˈtʃen.se.o" },
4898
- "cesso": { "part": "Verb", "ipa": "ˈtʃes.so" },
4899
- "cieo": { "part": "Verb", "ipa": "ˈtʃi.e.o" },
4900
- "cingo": { "part": "Verb", "ipa": "ˈtʃin.go" },
4901
- "cito": { "part": "Verb", "ipa": "ˈtʃi.to" },
4902
- "coco": { "part": "Verb", "ipa": "ˈko.ko" },
4903
- "coepio": { "part": "Verb", "ipa": "ˈtʃe.pi.o" },
4904
- "coerceo": { "part": "Verb", "ipa": "koˈer.tʃe.o" },
4905
- "compello": { "part": "Verb", "ipa": "komˈpel.lo" },
4906
- "concido": { "part": "Verb", "ipa": "konˈtʃi.do" },
4885
+ "accendo": { "meaning": "kindle, ignite; inflame", "part": "Verb", "ipa": "akˈtʃen.do" },
4886
+ "ait": { "meaning": "say, affirm", "part": "Verb", "ipa": "ˈait" },
4887
+ "alo": { "meaning": "nourish, feed; support", "part": "Verb", "ipa": "ˈa.lo" },
4888
+ "ambulo": { "meaning": "walk, go about", "part": "Verb", "ipa": "amˈbu.lo" },
4889
+ "bello": { "meaning": "wage war, fight", "part": "Verb", "ipa": "ˈbel.lo" },
4890
+ "bibo": { "meaning": "drink", "part": "Verb", "ipa": "ˈbi.bo" },
4891
+ "caleo": { "meaning": "be warm, glow", "part": "Verb", "ipa": "ˈka.le.o" },
4892
+ "capto": { "meaning": "seize, catch; try to get", "part": "Verb", "ipa": "ˈkap.to" },
4893
+ "carpo": { "meaning": "pluck, seize; criticize", "part": "Verb", "ipa": "ˈkar.po" },
4894
+ "castigo": { "meaning": "punish, chastise", "part": "Verb", "ipa": "kasˈti.go" },
4895
+ "cedo": { "meaning": "yield, give way; go", "part": "Verb", "ipa": "ˈtʃe.do" },
4896
+ "ceno": { "meaning": "dine, eat dinner", "part": "Verb", "ipa": "ˈtʃe.no" },
4897
+ "censeo": { "meaning": "assess; think, judge", "part": "Verb", "ipa": "ˈtʃen.se.o" },
4898
+ "cesso": { "meaning": "delay, be slow; cease", "part": "Verb", "ipa": "ˈtʃes.so" },
4899
+ "cieo": { "meaning": "move, set in motion", "part": "Verb", "ipa": "ˈtʃi.e.o" },
4900
+ "cingo": { "meaning": "gird, surround", "part": "Verb", "ipa": "ˈtʃin.go" },
4901
+ "cito": { "meaning": "summon, call upon", "part": "Verb", "ipa": "ˈtʃi.to" },
4902
+ "coco": { "meaning": "cook, prepare food", "part": "Verb", "ipa": "ˈko.ko" },
4903
+ "coepio": { "meaning": "begin, undertake", "part": "Verb", "ipa": "ˈtʃe.pi.o" },
4904
+ "coerceo": { "meaning": "confine, restrain", "part": "Verb", "ipa": "koˈer.tʃe.o" },
4905
+ "compello": { "meaning": "drive together; compel", "part": "Verb", "ipa": "komˈpel.lo" },
4906
+ "concido": { "meaning": "fall down, collapse", "part": "Verb", "ipa": "konˈtʃi.do" },
4907
4907
  "confido": { "part": "Verb", "ipa": "konˈfi.do" },
4908
4908
  "congrego": { "part": "Verb", "ipa": "konˈgre.go" },
4909
4909
  "conservo": { "part": "Verb", "ipa": "konˈser.vo" },
@@ -1,3 +1,3 @@
1
1
  class MedievalLatina
2
- VERSION = "3.1.0".freeze
2
+ VERSION = "3.1.1".freeze
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: medieval_latina
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jayson Virissimo
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2024-12-26 00:00:00.000000000 Z
10
+ date: 2025-09-28 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: i18n
@@ -107,6 +107,7 @@ files:
107
107
  - ".rspec"
108
108
  - ".standard.yml"
109
109
  - ".tool-versions"
110
+ - CLAUDE.md
110
111
  - Gemfile
111
112
  - Gemfile.lock
112
113
  - LICENSE.txt