dictionaries 0.3.7

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of dictionaries might be problematic. Click here for more details.

Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +219 -0
  3. data/bin/dictionaries +7 -0
  4. data/bin/unique_words_in_this_file +7 -0
  5. data/dictionaries.gemspec +85 -0
  6. data/doc/README.gen +176 -0
  7. data/doc/todo/todo.md +5 -0
  8. data/lib/dictionaries/ask_english_word.rb +141 -0
  9. data/lib/dictionaries/ask_italian_word.rb +84 -0
  10. data/lib/dictionaries/class/ask_word_from_dictionary.rb +693 -0
  11. data/lib/dictionaries/class/colours.rb +55 -0
  12. data/lib/dictionaries/class/constants.rb +16 -0
  13. data/lib/dictionaries/class/set_search_for_this_word.rb +163 -0
  14. data/lib/dictionaries/commandline/parse_commandline.rb +75 -0
  15. data/lib/dictionaries/constants.rb +133 -0
  16. data/lib/dictionaries/gui/gtk3/dictionary/dictionary.rb +457 -0
  17. data/lib/dictionaries/gui/tk/README.md +2 -0
  18. data/lib/dictionaries/gui/tk/dictionary.rb +85 -0
  19. data/lib/dictionaries/project/project_base_directory.rb +22 -0
  20. data/lib/dictionaries/project/project_yaml_directory.rb +25 -0
  21. data/lib/dictionaries/require_project/require_project.rb +11 -0
  22. data/lib/dictionaries/sinatra/app.rb +105 -0
  23. data/lib/dictionaries/sinatra/english_to_german.rb +88 -0
  24. data/lib/dictionaries/toplevel_methods/e.rb +16 -0
  25. data/lib/dictionaries/toplevel_methods/english_to_german.rb +31 -0
  26. data/lib/dictionaries/toplevel_methods/has_key.rb +32 -0
  27. data/lib/dictionaries/toplevel_methods/is_on_roebe.rb +16 -0
  28. data/lib/dictionaries/toplevel_methods/main_file.rb +88 -0
  29. data/lib/dictionaries/toplevel_methods/misc.rb +185 -0
  30. data/lib/dictionaries/toplevel_methods/module_methods.rb +9 -0
  31. data/lib/dictionaries/toplevel_methods/show_help.rb +31 -0
  32. data/lib/dictionaries/version/version.rb +17 -0
  33. data/lib/dictionaries/yaml/chinese.yml +21 -0
  34. data/lib/dictionaries/yaml/danish.yml +4 -0
  35. data/lib/dictionaries/yaml/deutsche_fremdwoerter.yml +1 -0
  36. data/lib/dictionaries/yaml/dutch.yml +3 -0
  37. data/lib/dictionaries/yaml/english.yml +2537 -0
  38. data/lib/dictionaries/yaml/farsi.yml +8 -0
  39. data/lib/dictionaries/yaml/finnish.yml +2 -0
  40. data/lib/dictionaries/yaml/italian.yml +504 -0
  41. data/lib/dictionaries/yaml/japanese.yml +15 -0
  42. data/lib/dictionaries/yaml/norwegian.yml +26 -0
  43. data/lib/dictionaries/yaml/portugese.yml +42 -0
  44. data/lib/dictionaries/yaml/russian.yml +10 -0
  45. data/lib/dictionaries/yaml/spanish.yml +130 -0
  46. data/lib/dictionaries/yaml/swedish.yml +101 -0
  47. data/lib/dictionaries.rb +1 -0
  48. metadata +208 -0
@@ -0,0 +1,130 @@
1
+ # =========================================================================== #
2
+ # SPANISH TAG
3
+ # =========================================================================== #
4
+ # x = YAML.load_file(Dictionaries.file_spanish); y= x / 4; pp y
5
+ # =========================================================================== #
6
+ # For a spanish dictionary, see this:
7
+ #
8
+ # https://www.spanishdict.com/
9
+ #
10
+ # =========================================================================== #
11
+
12
+ # =========================================================================== #
13
+ # === a tig
14
+ # =========================================================================== #
15
+ atacar: attack
16
+
17
+ # =========================================================================== #
18
+ # === b tig
19
+ # =========================================================================== #
20
+
21
+ # =========================================================================== #
22
+ # === c tig
23
+ # =========================================================================== #
24
+ campeón: champion
25
+ curioso: curious
26
+
27
+ # =========================================================================== #
28
+ # === d tig
29
+ # =========================================================================== #
30
+ devuel: to return; come back
31
+ divertido: funny
32
+ despacito: slow
33
+
34
+ # =========================================================================== #
35
+ # === e tig
36
+ # =========================================================================== #
37
+ entre: dazwischen (between)
38
+ espada: Schwert (sword)
39
+
40
+ # =========================================================================== #
41
+ # === f tig
42
+ # =========================================================================== #
43
+
44
+ # =========================================================================== #
45
+ # === h tig
46
+ # =========================================================================== #
47
+
48
+ # =========================================================================== #
49
+ # === g tig
50
+ # =========================================================================== #
51
+ gato: Katze (cat)
52
+ grite: laut rufen
53
+
54
+ # =========================================================================== #
55
+ # === i tig
56
+ # =========================================================================== #
57
+
58
+ # =========================================================================== #
59
+ # === j tig
60
+ # =========================================================================== #
61
+
62
+ # =========================================================================== #
63
+ # === k tig
64
+ # =========================================================================== #
65
+
66
+ # =========================================================================== #
67
+ # === l tig
68
+ # =========================================================================== #
69
+
70
+ # =========================================================================== #
71
+ # === m tig
72
+ # =========================================================================== #
73
+ mentira: a lie, a falsehood, an incorrect statement; "contar uma mentira" → "to tell a lie"
74
+ mascotas: pets
75
+ matar: to kill
76
+ mensaje: message
77
+
78
+ # =========================================================================== #
79
+ # === p tig
80
+ # =========================================================================== #
81
+ pata: duck
82
+ payaso: clown
83
+
84
+ # =========================================================================== #
85
+ # === r tig
86
+ # =========================================================================== #
87
+ retirarse: retreat
88
+
89
+ # =========================================================================== #
90
+ # === s tig
91
+ # =========================================================================== #
92
+ salir: to stop / beenden, rausgehen
93
+
94
+ # =========================================================================== #
95
+ # === t tig
96
+ # =========================================================================== #
97
+
98
+ # =========================================================================== #
99
+ # === u tig
100
+ # =========================================================================== #
101
+
102
+ # =========================================================================== #
103
+ # === v tig
104
+ # =========================================================================== #
105
+
106
+ # =========================================================================== #
107
+ # === n tig
108
+ # =========================================================================== #
109
+
110
+ # =========================================================================== #
111
+ # === q tig
112
+ # =========================================================================== #
113
+
114
+ # =========================================================================== #
115
+ # === o tig
116
+ # =========================================================================== #
117
+ ojos: Augen (eyes)
118
+
119
+ # =========================================================================== #
120
+ # === v tig
121
+ # =========================================================================== #
122
+ vacca: Kuh (cow)
123
+
124
+ # =========================================================================== #
125
+ # === w tig
126
+ # =========================================================================== #
127
+
128
+ # =========================================================================== #
129
+ # === y tig
130
+ # =========================================================================== #
@@ -0,0 +1,101 @@
1
+ # =========================================================================== #
2
+ # === swedish.yml
3
+ #
4
+ # Swedish words!
5
+ # =========================================================================== #
6
+
7
+ # ========================================================================== #
8
+ # a tig
9
+ # ========================================================================== #
10
+
11
+ # ========================================================================== #
12
+ # b tig
13
+ # ========================================================================== #
14
+
15
+ # ========================================================================== #
16
+ # c tig
17
+ # ========================================================================== #
18
+
19
+ # ========================================================================== #
20
+ # d tig
21
+ # ========================================================================== #
22
+
23
+ # ========================================================================== #
24
+ # e tig
25
+ # ========================================================================== #
26
+
27
+ # ========================================================================== #
28
+ # f tig
29
+ # ========================================================================== #
30
+
31
+ # ========================================================================== #
32
+ # g tig
33
+ # ========================================================================== #
34
+
35
+ # ========================================================================== #
36
+ # h tig
37
+ # ========================================================================== #
38
+
39
+ # ========================================================================== #
40
+ # i tig
41
+ # ========================================================================== #
42
+
43
+ # ========================================================================== #
44
+ # j tig
45
+ # ========================================================================== #
46
+
47
+ # ========================================================================== #
48
+ # k tig
49
+ # ========================================================================== #
50
+
51
+ # ========================================================================== #
52
+ # l tig
53
+ # ========================================================================== #
54
+
55
+ # ========================================================================== #
56
+ # m tig
57
+ # ========================================================================== #
58
+
59
+ # ========================================================================== #
60
+ # n tig
61
+ # ========================================================================== #
62
+
63
+ # ========================================================================== #
64
+ # p tig
65
+ # ========================================================================== #
66
+
67
+ # ========================================================================== #
68
+ # q tig
69
+ # ========================================================================== #
70
+
71
+ # ========================================================================== #
72
+ # r tig
73
+ # ========================================================================== #
74
+
75
+ # ========================================================================== #
76
+ # s tig
77
+ # ========================================================================== #
78
+
79
+ # ========================================================================== #
80
+ # t tig
81
+ # ========================================================================== #
82
+
83
+ # ========================================================================== #
84
+ # u tig
85
+ # ========================================================================== #
86
+
87
+ # ========================================================================== #
88
+ # v tig
89
+ # ========================================================================== #
90
+
91
+ # ========================================================================== #
92
+ # o tig
93
+ # ========================================================================== #
94
+
95
+ # ========================================================================== #
96
+ # w tig
97
+ # ========================================================================== #
98
+
99
+ # ========================================================================== #
100
+ # y tig
101
+ # ========================================================================== #
@@ -0,0 +1 @@
1
+ require 'dictionaries/require_project/require_project.rb'
metadata ADDED
@@ -0,0 +1,208 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dictionaries
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.7
5
+ platform: ruby
6
+ authors:
7
+ - Robert A. Heiler
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-07-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: colours
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: generate_shell_completion
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: opn
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: open
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: save_file
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: xorg_buffer
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: "\nThis project is called dictionaries.\n\nIt used to be called ask_english_words
98
+ but the name was changed towards\n\"dictionaries\", when the focus became on dictionaries
99
+ in general rather\nthan merely translations from and to the english language.\n\nThere
100
+ are a total of 2402 english words\nregistered, with the associated german translation.
101
+ (It is\ngerman primarily because that is my native language, but in\nprinciple this
102
+ project could be extended to include other\nlanguages as well. You only need to
103
+ add a yaml file containing\nthe key-value pairs.)\n\nIf you need a more comprehensive
104
+ dictionary, I can recommend\nthe file de-en.txt that is part of the tu-chemnitz
105
+ \ndistribution ( https://www-user.tu-chemnitz.de/~fri/ding/ ). That\nfile is really
106
+ huge - about 20 MB.\n\nIn principle, the dictionaries project could be extended
107
+ to \nmake use of that massive file instead. I will be thinking\nabout this for the
108
+ time being (starting at July 2018).\n\n"
109
+ email: shevy@inbox.lt
110
+ executables: []
111
+ extensions: []
112
+ extra_rdoc_files: []
113
+ files:
114
+ - README.md
115
+ - bin/dictionaries
116
+ - bin/unique_words_in_this_file
117
+ - dictionaries.gemspec
118
+ - doc/README.gen
119
+ - doc/todo/todo.md
120
+ - lib/dictionaries.rb
121
+ - lib/dictionaries/ask_english_word.rb
122
+ - lib/dictionaries/ask_italian_word.rb
123
+ - lib/dictionaries/class/ask_word_from_dictionary.rb
124
+ - lib/dictionaries/class/colours.rb
125
+ - lib/dictionaries/class/constants.rb
126
+ - lib/dictionaries/class/set_search_for_this_word.rb
127
+ - lib/dictionaries/commandline/parse_commandline.rb
128
+ - lib/dictionaries/constants.rb
129
+ - lib/dictionaries/gui/gtk3/dictionary/dictionary.rb
130
+ - lib/dictionaries/gui/tk/README.md
131
+ - lib/dictionaries/gui/tk/dictionary.rb
132
+ - lib/dictionaries/project/project_base_directory.rb
133
+ - lib/dictionaries/project/project_yaml_directory.rb
134
+ - lib/dictionaries/require_project/require_project.rb
135
+ - lib/dictionaries/sinatra/app.rb
136
+ - lib/dictionaries/sinatra/english_to_german.rb
137
+ - lib/dictionaries/toplevel_methods/e.rb
138
+ - lib/dictionaries/toplevel_methods/english_to_german.rb
139
+ - lib/dictionaries/toplevel_methods/has_key.rb
140
+ - lib/dictionaries/toplevel_methods/is_on_roebe.rb
141
+ - lib/dictionaries/toplevel_methods/main_file.rb
142
+ - lib/dictionaries/toplevel_methods/misc.rb
143
+ - lib/dictionaries/toplevel_methods/module_methods.rb
144
+ - lib/dictionaries/toplevel_methods/show_help.rb
145
+ - lib/dictionaries/version/version.rb
146
+ - lib/dictionaries/yaml/chinese.yml
147
+ - lib/dictionaries/yaml/danish.yml
148
+ - lib/dictionaries/yaml/deutsche_fremdwoerter.yml
149
+ - lib/dictionaries/yaml/dutch.yml
150
+ - lib/dictionaries/yaml/english.yml
151
+ - lib/dictionaries/yaml/farsi.yml
152
+ - lib/dictionaries/yaml/finnish.yml
153
+ - lib/dictionaries/yaml/italian.yml
154
+ - lib/dictionaries/yaml/japanese.yml
155
+ - lib/dictionaries/yaml/norwegian.yml
156
+ - lib/dictionaries/yaml/portugese.yml
157
+ - lib/dictionaries/yaml/russian.yml
158
+ - lib/dictionaries/yaml/spanish.yml
159
+ - lib/dictionaries/yaml/swedish.yml
160
+ homepage: https://www.rubydoc.info/gems/dictionaries/
161
+ licenses:
162
+ - MIT
163
+ metadata: {}
164
+ post_install_message: |2+
165
+
166
+ This project can ask or translate english or italian words (or words
167
+ from any other language, as long as a .yml file is supplied that
168
+ contains these key-value pair entries).
169
+
170
+ This project is probably not very useful for other people, but it helps
171
+ me to improve my knowledge about the english or italian language or
172
+ any other language.
173
+
174
+ For more information, have a look at the main README.md file, which
175
+ can also be found on the hompage of this gem at rubygems.org, on
176
+ the bottom right side (see https://www.rubydoc.info/gems/dictionaries/ ).
177
+
178
+ rdoc_options: []
179
+ require_paths:
180
+ - lib
181
+ required_ruby_version: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: 2.5.8
186
+ required_rubygems_version: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: 3.3.18
191
+ requirements: []
192
+ rubygems_version: 3.3.18
193
+ signing_key:
194
+ specification_version: 4
195
+ summary: This project is called dictionaries. It used to be called ask_english_words
196
+ but the name was changed towards "dictionaries", when the focus became on dictionaries
197
+ in general rather than merely translations from and to the english language. There
198
+ are a total of 2402 english words registered, with the associated german translation.
199
+ (It is german primarily because that is my native language, but in principle this
200
+ project could be extended to include other languages as well. You only need to add
201
+ a yaml file containing the key-value pairs.) If you need a more comprehensive dictionary,
202
+ I can recommend the file de-en.txt that is part of the tu-chemnitz distribution
203
+ ( https://www-user.tu-chemnitz.de/~fri/ding/ ). That file is really huge - about
204
+ 20 MB. In principle, the dictionaries project could be extended to make use of
205
+ that massive file instead. I will be thinking about this for the time being (starting
206
+ at July 2018).
207
+ test_files: []
208
+ ...