medieval_latina 2.0.5 → 2.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 +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +3 -1
- data/README.md +3 -0
- data/bin/build +7 -0
- data/lexicon.pls +5718 -0
- data/lib/medieval_latina/dictionary.rb +1651 -1437
- data/lib/medieval_latina/lexicon_builder.rb +61 -0
- data/lib/medieval_latina/version.rb +1 -1
- data/lib/medieval_latina.rb +1 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73b3e247e6a3cd36e70b64ebffb4d4947f2f3f343a8749693269c32e6dd5f64b
|
4
|
+
data.tar.gz: 21652459415b9160232035ca7a355dc0f4c1ffac0848f59b5793858e9c41fc0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a2be43d8e45015049f7fd448626ff3800706c7b5b98f1792fe902788c2ba7a6d5a3c80d5e59d0415319f7432275d8eeaea294ad167e187486d07ab580128f79
|
7
|
+
data.tar.gz: aba3e38916bc44b9603fd50fd27dd4c3ea94a0a7e23b46a5201f334b73c045019082fa9a2cd45970fa1891a6f50daf95b0caacee8066a3e72e8c8f39fc27a14a
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
medieval_latina (2.
|
4
|
+
medieval_latina (2.1.1)
|
5
5
|
i18n
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
10
|
ast (2.4.0)
|
11
|
+
builder (3.2.4)
|
11
12
|
concurrent-ruby (1.2.2)
|
12
13
|
diff-lcs (1.3)
|
13
14
|
i18n (1.13.0)
|
@@ -50,6 +51,7 @@ PLATFORMS
|
|
50
51
|
ruby
|
51
52
|
|
52
53
|
DEPENDENCIES
|
54
|
+
builder
|
53
55
|
i18n
|
54
56
|
medieval_latina!
|
55
57
|
rake (~> 12.0)
|
data/README.md
CHANGED
@@ -56,6 +56,9 @@ To release a new version:
|
|
56
56
|
2. Run `bin/setup` to increment the version in the lock file
|
57
57
|
3. Run `bundle exec rake release`
|
58
58
|
|
59
|
+
Rebuild the lexicon file when you add new International Phonetic Alphabet pronunciations.
|
60
|
+
You do this by running: `bin/build`
|
61
|
+
|
59
62
|
## Contributing
|
60
63
|
|
61
64
|
Bug reports and pull requests are welcome on GitHub at https://github.com/jaysonvirissimo/medieval_latina.
|