onvkv_seteyoposecetv 0.1.5 → 0.1.6
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af41863c354c278014204fc6ce331c41d3b894893849de327444c7f72835f0fb
|
|
4
|
+
data.tar.gz: 103a9d8e8f9d29a857c2ca78428112f1a4d8d6cf902d8d515c63aa24ce4131ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3f8bc40798c1f9eae15bd59c1369b582ce5af0bf80c8e463dfe4d1fe0fcbf0ac0c6d22f02859638de9be417d89a087ed05b9e1b9957a4c545376e8081dd75af
|
|
7
|
+
data.tar.gz: 234459f3ea47a2229006297bbe2f00c3303e7297f0bf7c343ae61e9bd610fee9ff660dba636341281bb65786c68fff88417aabd321723e875959609f94751e34
|
|
@@ -18,12 +18,17 @@ module Conjugators
|
|
|
18
18
|
basic: conjugate(tense: :conjugate_2ps, type: :basic),
|
|
19
19
|
polite: conjugate(tense: :conjugate_2ps, type: :polite),
|
|
20
20
|
do_not: conjugate(tense: :conjugate_2ps, type: :do_not),
|
|
21
|
+
let_it: conjugate(tense: :conjugate_2ps, type: :let_it),
|
|
22
|
+
you_must: conjugate(tense: :conjugate_2ps, type: :you_must),
|
|
23
|
+
you_must_not: conjugate(tense: :conjugate_2ps, type: :you_must_not),
|
|
21
24
|
},
|
|
22
25
|
second_person_plural: {
|
|
23
26
|
basic: conjugate(tense: :conjugate_2pp, type: :basic),
|
|
24
27
|
polite: conjugate(tense: :conjugate_2pp, type: :polite),
|
|
25
28
|
do_not: conjugate(tense: :conjugate_2pp, type: :do_not),
|
|
26
29
|
lets: conjugate(tense: :conjugate_2pp, type: :lets),
|
|
30
|
+
you_must: conjugate(tense: :conjugate_2pp, type: :you_must),
|
|
31
|
+
you_must_not: conjugate(tense: :conjugate_2pp, type: :you_must_not),
|
|
27
32
|
},
|
|
28
33
|
}
|
|
29
34
|
end
|
|
@@ -55,7 +60,7 @@ module Conjugators
|
|
|
55
60
|
end
|
|
56
61
|
end
|
|
57
62
|
end
|
|
58
|
-
when :basic, :polite, :lets
|
|
63
|
+
when :basic, :polite, :lets, :let_it, :you_must, :you_must_not
|
|
59
64
|
result = send(tense, type)
|
|
60
65
|
if result[0].is_a?(String)
|
|
61
66
|
[result.map {|r| r + ?s }]
|
|
@@ -144,7 +149,18 @@ module Conjugators
|
|
|
144
149
|
'2pp' => %w{ ekot },
|
|
145
150
|
},
|
|
146
151
|
lets: {
|
|
147
|
-
'2pp' => %w{ vkēt },
|
|
152
|
+
'2pp' => %w{ vkē vkēt },
|
|
153
|
+
},
|
|
154
|
+
let_it: {
|
|
155
|
+
'2ps' => %w{ ekv },
|
|
156
|
+
},
|
|
157
|
+
you_must: {
|
|
158
|
+
'2ps' => ["vccv", "et owvccv" ],
|
|
159
|
+
'2pp' => ["vkvccv", "et owvkvccv" ],
|
|
160
|
+
},
|
|
161
|
+
you_must_not: {
|
|
162
|
+
'2ps' => ["ekot owvccv" ],
|
|
163
|
+
'2pp' => ["ekot owvkvccv" ],
|
|
148
164
|
},
|
|
149
165
|
}
|
|
150
166
|
end
|