greeklish 0.0.1 → 0.0.2
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/lib/greeklish/greeklish_converter.rb +4 -0
- data/lib/greeklish/version.rb +1 -1
- data/spec/greeklish_converter_spec.rb +8 -3
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c681820e7d12fece0bbb676b00f26f94d97056d
|
4
|
+
data.tar.gz: 81114c6830efc85968350b4b0269465680bc2d70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b8944768c1daad732b7799b2f2a04b49ea15d6a585f5aebc0bb990b4a48a72c82894211bd2baa7fb5c11ab2733259984415239334b70fc6f78060594858f9bb
|
7
|
+
data.tar.gz: 2516d33a8be6ca4d10349006d3fc17dbc5a87a4fa472b9b243e015085cf80279e184cc23e4921447ad260d0413d1d5681f6756e7f25ca9aec1e494aa5a212790
|
@@ -44,6 +44,10 @@ module Greeklish
|
|
44
44
|
# @param token_length the length of the input token
|
45
45
|
# @return A list of the generated strings
|
46
46
|
def convert(input_token)
|
47
|
+
if (input_token[-1, 1] == "ς")
|
48
|
+
input_token[-1, 1] = "σ"
|
49
|
+
end
|
50
|
+
|
47
51
|
# Is this a Greek word?
|
48
52
|
if (!identify_greek_word(input_token))
|
49
53
|
return nil
|
data/lib/greeklish/version.rb
CHANGED
@@ -7,7 +7,7 @@ describe 'GreeklishConverter' do
|
|
7
7
|
|
8
8
|
# a sample of greek words to generate their greeklish
|
9
9
|
# counterparts.
|
10
|
-
greek_words = ["αυτοκινητο", "ομπρελα", "ξεσκεπαστοσ"]
|
10
|
+
greek_words = ["αυτοκινητο", "ομπρελα", "ξεσκεπαστοσ", "ομορφος"]
|
11
11
|
|
12
12
|
# the greeklish counterparts that should be generated from the greek words.
|
13
13
|
generated_greeklish_words = [
|
@@ -15,11 +15,16 @@ describe 'GreeklishConverter' do
|
|
15
15
|
"autokinito", "aftokinito", "avtokinito", "aytokinito",
|
16
16
|
"autokinhtwn", "aftokinhta", "avtokinhta", "aytokinhtwn"],
|
17
17
|
["omprela", "obrela", "ompreles", "obrelwn", "obreles", "omprelas"],
|
18
|
-
["kseskepastos", "xeskepastos", "kseskepastou", "xeskepastwn", "kseskepastoi"]
|
18
|
+
["kseskepastos", "xeskepastos", "kseskepastou", "xeskepastwn", "kseskepastoi"],
|
19
|
+
["omorfos", "omorphos", "omorfh", "omorphh", "omorfi", "omorphi", "omorfous",
|
20
|
+
"omorphous", "omorfoys", "omorphoys", "omorfus", "omorphus", "omorfou",
|
21
|
+
"omorphou", "omorfoy", "omorphoy", "omorfu", "omorphu", "omorfoi", "omorphoi",
|
22
|
+
"omorfi", "omorphi", "omorfwn", "omorphwn", "omorfon", "omorphon", "omorfvn",
|
23
|
+
"omorphvn"]
|
19
24
|
]
|
20
25
|
|
21
26
|
# these words should not be processed by the converter.
|
22
|
-
invalid_words = ["mobile", "αυριο64", "καλάθι", "ΣΠιτι"
|
27
|
+
invalid_words = ["mobile", "αυριο64", "καλάθι", "ΣΠιτι"]
|
23
28
|
|
24
29
|
before(:each) do
|
25
30
|
@greeklish_words = []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: greeklish
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Petros Markou
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -96,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
96
|
version: '0'
|
97
97
|
requirements: []
|
98
98
|
rubyforge_project:
|
99
|
-
rubygems_version: 2.4.
|
99
|
+
rubygems_version: 2.4.7
|
100
100
|
signing_key:
|
101
101
|
specification_version: 4
|
102
102
|
summary: Generates greeklish forms
|
@@ -106,4 +106,3 @@ test_files:
|
|
106
106
|
- spec/greeklish_reverse_stemmer_spec.rb
|
107
107
|
- spec/greeklish_spec.rb
|
108
108
|
- spec/spec_helper.rb
|
109
|
-
has_rdoc:
|