random-words 1.0.5 → 1.0.7
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/.rspec_status +166 -39
- data/.rubocop.yml +4 -0
- data/.rubocop_todo.yml +313 -0
- data/CHANGELOG.md +67 -0
- data/Gemfile +15 -12
- data/Gemfile.lock +46 -26
- data/README.md +208 -15
- data/bin/randw +258 -92
- data/lib/random-words/array.rb +71 -0
- data/lib/random-words/config.rb +254 -0
- data/lib/random-words/generator.rb +257 -94
- data/lib/random-words/hash.rb +16 -0
- data/lib/random-words/html2markdown.rb +205 -0
- data/lib/random-words/lorem-markdown.rb +397 -0
- data/lib/random-words/number-to-word.rb +139 -0
- data/lib/random-words/source.rb +106 -0
- data/lib/random-words/string.rb +224 -45
- data/lib/random-words/table-cleanup.rb +210 -0
- data/lib/random-words/version.rb +1 -1
- data/lib/random-words/words/1984/adjectives.txt +103 -0
- data/lib/random-words/words/1984/adverbs.txt +92 -0
- data/lib/random-words/words/1984/articles-plural.txt +10 -0
- data/lib/random-words/words/1984/articles-singular.txt +10 -0
- data/lib/random-words/words/1984/clauses.txt +79 -0
- data/lib/random-words/words/1984/config.yml +4 -0
- data/lib/random-words/words/1984/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/1984/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/1984/names.txt +12 -0
- data/lib/random-words/words/1984/nouns-plural.txt +89 -0
- data/lib/random-words/words/1984/nouns-singular.txt +74 -0
- data/lib/random-words/words/1984/numbers.yml +5 -0
- data/lib/random-words/words/1984/phrases.txt +16 -0
- data/lib/random-words/words/1984/prepositions.txt +89 -0
- data/lib/random-words/words/1984/terminators.txt +16 -0
- data/lib/random-words/words/1984/verbs-passive.txt +83 -0
- data/lib/random-words/words/1984/verbs-plural.txt +91 -0
- data/lib/random-words/words/1984/verbs-singular.txt +110 -0
- data/lib/random-words/words/alice/adjectives.txt +80 -0
- data/lib/random-words/words/alice/adverbs.txt +87 -0
- data/lib/random-words/words/alice/articles-plural.txt +10 -0
- data/lib/random-words/words/alice/articles-singular.txt +10 -0
- data/lib/random-words/words/alice/clauses.txt +81 -0
- data/lib/random-words/words/alice/config.yml +4 -0
- data/lib/random-words/words/alice/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/alice/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/alice/names.txt +10 -0
- data/lib/random-words/words/alice/nouns-plural.txt +95 -0
- data/lib/random-words/words/alice/nouns-singular.txt +82 -0
- data/lib/random-words/words/alice/numbers.yml +5 -0
- data/lib/random-words/words/alice/phrases.txt +16 -0
- data/lib/random-words/words/alice/prepositions.txt +45 -0
- data/lib/random-words/words/alice/terminators.txt +16 -0
- data/lib/random-words/words/alice/verbs-passive.txt +495 -0
- data/lib/random-words/words/alice/verbs-plural.txt +115 -0
- data/lib/random-words/words/alice/verbs-singular.txt +97 -0
- data/lib/random-words/words/bacon/clauses.txt +592 -592
- data/lib/random-words/words/bacon/config.yml +4 -0
- data/lib/random-words/words/bacon/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/bacon/names.txt +54 -0
- data/lib/random-words/words/bacon/numbers.yml +5 -0
- data/lib/random-words/words/bacon/phrases.txt +20 -0
- data/lib/random-words/words/bacon/prepositions.txt +45 -0
- data/lib/random-words/words/bacon/terminators.txt +16 -0
- data/lib/random-words/words/corporate/config.yml +4 -0
- data/lib/random-words/words/corporate/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/corporate/names.txt +74 -0
- data/lib/random-words/words/corporate/numbers.yml +5 -0
- data/lib/random-words/words/corporate/phrases.txt +29 -0
- data/lib/random-words/words/corporate/prepositions.txt +45 -0
- data/lib/random-words/words/corporate/terminators.txt +16 -0
- data/lib/random-words/words/doctor/adjectives.txt +92 -0
- data/lib/random-words/words/doctor/adverbs.txt +92 -0
- data/lib/random-words/words/doctor/articles-plural.txt +10 -0
- data/lib/random-words/words/doctor/articles-singular.txt +10 -0
- data/lib/random-words/words/doctor/clauses.txt +83 -0
- data/lib/random-words/words/doctor/config.yml +10 -0
- data/lib/random-words/words/doctor/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/doctor/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/doctor/names.txt +74 -0
- data/lib/random-words/words/doctor/nouns-plural.txt +84 -0
- data/lib/random-words/words/doctor/nouns-singular.txt +84 -0
- data/lib/random-words/words/doctor/numbers.yml +5 -0
- data/lib/random-words/words/doctor/phrases.txt +29 -0
- data/lib/random-words/words/doctor/prepositions.txt +45 -0
- data/lib/random-words/words/doctor/terminators.txt +16 -0
- data/lib/random-words/words/doctor/verbs-passive.txt +83 -0
- data/lib/random-words/words/doctor/verbs-plural.txt +88 -0
- data/lib/random-words/words/doctor/verbs-singular.txt +83 -0
- data/lib/random-words/words/english/clauses.txt +592 -592
- data/lib/random-words/words/english/config.yml +4 -0
- data/lib/random-words/words/english/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/english/names.txt +74 -0
- data/lib/random-words/words/english/numbers.yml +5 -0
- data/lib/random-words/words/english/phrases.txt +29 -0
- data/lib/random-words/words/english/prepositions.txt +45 -0
- data/lib/random-words/words/english/terminators.txt +16 -0
- data/lib/random-words/words/english/verbs-plural.txt +1 -0
- data/lib/random-words/words/english/verbs-singular.txt +1 -0
- data/lib/random-words/words/foulmouth/adjectives.txt +89 -0
- data/lib/random-words/words/foulmouth/adverbs.txt +97 -0
- data/lib/random-words/words/foulmouth/articles-plural.txt +12 -0
- data/lib/random-words/words/foulmouth/articles-singular.txt +11 -0
- data/lib/random-words/words/foulmouth/clauses.txt +74 -0
- data/lib/random-words/words/foulmouth/config.yml +4 -0
- data/lib/random-words/words/foulmouth/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/foulmouth/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/foulmouth/names.txt +81 -0
- data/lib/random-words/words/foulmouth/nouns-plural.txt +96 -0
- data/lib/random-words/words/foulmouth/nouns-singular.txt +99 -0
- data/lib/random-words/words/foulmouth/numbers.yml +5 -0
- data/lib/random-words/words/foulmouth/phrases.txt +30 -0
- data/lib/random-words/words/foulmouth/prepositions.txt +35 -0
- data/lib/random-words/words/foulmouth/terminators.txt +16 -0
- data/lib/random-words/words/foulmouth/verbs-passive.txt +143 -0
- data/lib/random-words/words/foulmouth/verbs-plural.txt +91 -0
- data/lib/random-words/words/foulmouth/verbs-singular.txt +104 -0
- data/lib/random-words/words/hipster/adjectives.txt +100 -0
- data/lib/random-words/words/hipster/adverbs.txt +89 -0
- data/lib/random-words/words/hipster/articles-plural.txt +10 -0
- data/lib/random-words/words/hipster/articles-singular.txt +10 -0
- data/lib/random-words/words/hipster/clauses.txt +180 -0
- data/lib/random-words/words/hipster/config.yml +4 -0
- data/lib/random-words/words/hipster/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/hipster/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/hipster/names.txt +73 -0
- data/lib/random-words/words/hipster/nouns-plural.txt +96 -0
- data/lib/random-words/words/hipster/nouns-singular.txt +100 -0
- data/lib/random-words/words/hipster/numbers.yml +5 -0
- data/lib/random-words/words/hipster/phrases.txt +21 -0
- data/lib/random-words/words/hipster/prepositions.txt +45 -0
- data/lib/random-words/words/hipster/terminators.txt +16 -0
- data/lib/random-words/words/hipster/verbs-passive.txt +88 -0
- data/lib/random-words/words/hipster/verbs-plural.txt +106 -0
- data/lib/random-words/words/hipster/verbs-singular.txt +114 -0
- data/lib/random-words/words/latin/config.yml +4 -0
- data/lib/random-words/words/latin/conjunctions-coordinating.txt +15 -0
- data/lib/random-words/words/latin/names.txt +93 -0
- data/lib/random-words/words/latin/numbers.yml +5 -0
- data/lib/random-words/words/latin/phrases.txt +16 -0
- data/lib/random-words/words/latin/prepositions.txt +18 -0
- data/lib/random-words/words/latin/terminators.txt +16 -0
- data/lib/random-words/words/spanish/adjectives.txt +81 -0
- data/lib/random-words/words/spanish/adverbs.txt +87 -0
- data/lib/random-words/words/spanish/articles-plural.txt +4 -0
- data/lib/random-words/words/spanish/articles-singular.txt +4 -0
- data/lib/random-words/words/spanish/clauses.txt +74 -0
- data/lib/random-words/words/spanish/config.yml +4 -0
- data/lib/random-words/words/spanish/conjunctions-coordinating.txt +8 -0
- data/lib/random-words/words/spanish/conjunctions-subordinate.txt +16 -0
- data/lib/random-words/words/spanish/names.txt +61 -0
- data/lib/random-words/words/spanish/nouns-plural.txt +92 -0
- data/lib/random-words/words/spanish/nouns-singular.txt +125 -0
- data/lib/random-words/words/spanish/numbers.yml +5 -0
- data/lib/random-words/words/spanish/phrases.txt +31 -0
- data/lib/random-words/words/spanish/prepositions.txt +31 -0
- data/lib/random-words/words/spanish/terminators.txt +17 -0
- data/lib/random-words/words/spanish/verbs-passive.txt +495 -0
- data/lib/random-words/words/spanish/verbs-plural.txt +326 -0
- data/lib/random-words/words/spanish/verbs-singular.txt +351 -0
- data/lib/random-words/words/veggie/adjectives.txt +111 -0
- data/lib/random-words/words/veggie/adverbs.txt +81 -0
- data/lib/random-words/words/veggie/articles-plural.txt +10 -0
- data/lib/random-words/words/veggie/articles-singular.txt +10 -0
- data/lib/random-words/words/veggie/clauses.txt +57 -0
- data/lib/random-words/words/veggie/config.yml +4 -0
- data/lib/random-words/words/veggie/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/veggie/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/veggie/names.txt +93 -0
- data/lib/random-words/words/veggie/nouns-plural.txt +78 -0
- data/lib/random-words/words/veggie/nouns-singular.txt +105 -0
- data/lib/random-words/words/veggie/numbers.yml +5 -0
- data/lib/random-words/words/veggie/phrases.txt +20 -0
- data/lib/random-words/words/veggie/prepositions.txt +45 -0
- data/lib/random-words/words/veggie/terminators.txt +16 -0
- data/lib/random-words/words/veggie/verbs-passive.txt +56 -0
- data/lib/random-words/words/veggie/verbs-plural.txt +79 -0
- data/lib/random-words/words/veggie/verbs-singular.txt +79 -0
- data/lib/random-words.rb +28 -0
- data/random-words.gemspec +3 -1
- data/src/_README.md +208 -15
- metadata +181 -9
- data/lib/random-words/words/bacon/numbers.txt +0 -21
- data/lib/random-words/words/corporate/numbers.txt +0 -21
- data/lib/random-words/words/english/numbers.txt +0 -21
- data/lib/random-words/words/latin/numbers.txt +0 -21
metadata
CHANGED
@@ -1,16 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: random-words
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Terpstra
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-04-
|
11
|
-
dependencies:
|
12
|
-
|
13
|
-
|
10
|
+
date: 2025-04-17 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: nokogiri
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '1.12'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '1.12'
|
26
|
+
description: Generate random text (lorem ipsum) from a variety of sources.
|
14
27
|
email: me@brettterpstra.com
|
15
28
|
executables:
|
16
29
|
- randw
|
@@ -22,6 +35,7 @@ files:
|
|
22
35
|
- ".rspec"
|
23
36
|
- ".rspec_status"
|
24
37
|
- ".rubocop.yml"
|
38
|
+
- ".rubocop_todo.yml"
|
25
39
|
- CHANGELOG.md
|
26
40
|
- Gemfile
|
27
41
|
- Gemfile.lock
|
@@ -29,18 +43,68 @@ files:
|
|
29
43
|
- Rakefile
|
30
44
|
- bin/randw
|
31
45
|
- lib/random-words.rb
|
46
|
+
- lib/random-words/array.rb
|
47
|
+
- lib/random-words/config.rb
|
32
48
|
- lib/random-words/generator.rb
|
49
|
+
- lib/random-words/hash.rb
|
50
|
+
- lib/random-words/html2markdown.rb
|
51
|
+
- lib/random-words/lorem-markdown.rb
|
52
|
+
- lib/random-words/number-to-word.rb
|
53
|
+
- lib/random-words/source.rb
|
33
54
|
- lib/random-words/string.rb
|
55
|
+
- lib/random-words/table-cleanup.rb
|
34
56
|
- lib/random-words/version.rb
|
57
|
+
- lib/random-words/words/1984/adjectives.txt
|
58
|
+
- lib/random-words/words/1984/adverbs.txt
|
59
|
+
- lib/random-words/words/1984/articles-plural.txt
|
60
|
+
- lib/random-words/words/1984/articles-singular.txt
|
61
|
+
- lib/random-words/words/1984/clauses.txt
|
62
|
+
- lib/random-words/words/1984/config.yml
|
63
|
+
- lib/random-words/words/1984/conjunctions-coordinating.txt
|
64
|
+
- lib/random-words/words/1984/conjunctions-subordinate.txt
|
65
|
+
- lib/random-words/words/1984/names.txt
|
66
|
+
- lib/random-words/words/1984/nouns-plural.txt
|
67
|
+
- lib/random-words/words/1984/nouns-singular.txt
|
68
|
+
- lib/random-words/words/1984/numbers.yml
|
69
|
+
- lib/random-words/words/1984/phrases.txt
|
70
|
+
- lib/random-words/words/1984/prepositions.txt
|
71
|
+
- lib/random-words/words/1984/terminators.txt
|
72
|
+
- lib/random-words/words/1984/verbs-passive.txt
|
73
|
+
- lib/random-words/words/1984/verbs-plural.txt
|
74
|
+
- lib/random-words/words/1984/verbs-singular.txt
|
75
|
+
- lib/random-words/words/alice/adjectives.txt
|
76
|
+
- lib/random-words/words/alice/adverbs.txt
|
77
|
+
- lib/random-words/words/alice/articles-plural.txt
|
78
|
+
- lib/random-words/words/alice/articles-singular.txt
|
79
|
+
- lib/random-words/words/alice/clauses.txt
|
80
|
+
- lib/random-words/words/alice/config.yml
|
81
|
+
- lib/random-words/words/alice/conjunctions-coordinating.txt
|
82
|
+
- lib/random-words/words/alice/conjunctions-subordinate.txt
|
83
|
+
- lib/random-words/words/alice/names.txt
|
84
|
+
- lib/random-words/words/alice/nouns-plural.txt
|
85
|
+
- lib/random-words/words/alice/nouns-singular.txt
|
86
|
+
- lib/random-words/words/alice/numbers.yml
|
87
|
+
- lib/random-words/words/alice/phrases.txt
|
88
|
+
- lib/random-words/words/alice/prepositions.txt
|
89
|
+
- lib/random-words/words/alice/terminators.txt
|
90
|
+
- lib/random-words/words/alice/verbs-passive.txt
|
91
|
+
- lib/random-words/words/alice/verbs-plural.txt
|
92
|
+
- lib/random-words/words/alice/verbs-singular.txt
|
35
93
|
- lib/random-words/words/bacon/adjectives.txt
|
36
94
|
- lib/random-words/words/bacon/adverbs.txt
|
37
95
|
- lib/random-words/words/bacon/articles-plural.txt
|
38
96
|
- lib/random-words/words/bacon/articles-singular.txt
|
39
97
|
- lib/random-words/words/bacon/clauses.txt
|
98
|
+
- lib/random-words/words/bacon/config.yml
|
99
|
+
- lib/random-words/words/bacon/conjunctions-coordinating.txt
|
40
100
|
- lib/random-words/words/bacon/conjunctions-subordinate.txt
|
101
|
+
- lib/random-words/words/bacon/names.txt
|
41
102
|
- lib/random-words/words/bacon/nouns-plural.txt
|
42
103
|
- lib/random-words/words/bacon/nouns-singular.txt
|
43
|
-
- lib/random-words/words/bacon/numbers.
|
104
|
+
- lib/random-words/words/bacon/numbers.yml
|
105
|
+
- lib/random-words/words/bacon/phrases.txt
|
106
|
+
- lib/random-words/words/bacon/prepositions.txt
|
107
|
+
- lib/random-words/words/bacon/terminators.txt
|
44
108
|
- lib/random-words/words/bacon/verbs-passive.txt
|
45
109
|
- lib/random-words/words/bacon/verbs-plural.txt
|
46
110
|
- lib/random-words/words/bacon/verbs-singular.txt
|
@@ -49,37 +113,145 @@ files:
|
|
49
113
|
- lib/random-words/words/corporate/articles-plural.txt
|
50
114
|
- lib/random-words/words/corporate/articles-singular.txt
|
51
115
|
- lib/random-words/words/corporate/clauses.txt
|
116
|
+
- lib/random-words/words/corporate/config.yml
|
117
|
+
- lib/random-words/words/corporate/conjunctions-coordinating.txt
|
52
118
|
- lib/random-words/words/corporate/conjunctions-subordinate.txt
|
119
|
+
- lib/random-words/words/corporate/names.txt
|
53
120
|
- lib/random-words/words/corporate/nouns-plural.txt
|
54
121
|
- lib/random-words/words/corporate/nouns-singular.txt
|
55
|
-
- lib/random-words/words/corporate/numbers.
|
122
|
+
- lib/random-words/words/corporate/numbers.yml
|
123
|
+
- lib/random-words/words/corporate/phrases.txt
|
124
|
+
- lib/random-words/words/corporate/prepositions.txt
|
125
|
+
- lib/random-words/words/corporate/terminators.txt
|
56
126
|
- lib/random-words/words/corporate/verbs-passive.txt
|
57
127
|
- lib/random-words/words/corporate/verbs-plural.txt
|
58
128
|
- lib/random-words/words/corporate/verbs-singular.txt
|
129
|
+
- lib/random-words/words/doctor/adjectives.txt
|
130
|
+
- lib/random-words/words/doctor/adverbs.txt
|
131
|
+
- lib/random-words/words/doctor/articles-plural.txt
|
132
|
+
- lib/random-words/words/doctor/articles-singular.txt
|
133
|
+
- lib/random-words/words/doctor/clauses.txt
|
134
|
+
- lib/random-words/words/doctor/config.yml
|
135
|
+
- lib/random-words/words/doctor/conjunctions-coordinating.txt
|
136
|
+
- lib/random-words/words/doctor/conjunctions-subordinate.txt
|
137
|
+
- lib/random-words/words/doctor/names.txt
|
138
|
+
- lib/random-words/words/doctor/nouns-plural.txt
|
139
|
+
- lib/random-words/words/doctor/nouns-singular.txt
|
140
|
+
- lib/random-words/words/doctor/numbers.yml
|
141
|
+
- lib/random-words/words/doctor/phrases.txt
|
142
|
+
- lib/random-words/words/doctor/prepositions.txt
|
143
|
+
- lib/random-words/words/doctor/terminators.txt
|
144
|
+
- lib/random-words/words/doctor/verbs-passive.txt
|
145
|
+
- lib/random-words/words/doctor/verbs-plural.txt
|
146
|
+
- lib/random-words/words/doctor/verbs-singular.txt
|
59
147
|
- lib/random-words/words/english/adjectives.txt
|
60
148
|
- lib/random-words/words/english/adverbs.txt
|
61
149
|
- lib/random-words/words/english/articles-plural.txt
|
62
150
|
- lib/random-words/words/english/articles-singular.txt
|
63
151
|
- lib/random-words/words/english/clauses.txt
|
152
|
+
- lib/random-words/words/english/config.yml
|
153
|
+
- lib/random-words/words/english/conjunctions-coordinating.txt
|
64
154
|
- lib/random-words/words/english/conjunctions-subordinate.txt
|
155
|
+
- lib/random-words/words/english/names.txt
|
65
156
|
- lib/random-words/words/english/nouns-plural.txt
|
66
157
|
- lib/random-words/words/english/nouns-singular.txt
|
67
|
-
- lib/random-words/words/english/numbers.
|
158
|
+
- lib/random-words/words/english/numbers.yml
|
159
|
+
- lib/random-words/words/english/phrases.txt
|
160
|
+
- lib/random-words/words/english/prepositions.txt
|
161
|
+
- lib/random-words/words/english/terminators.txt
|
68
162
|
- lib/random-words/words/english/verbs-passive.txt
|
69
163
|
- lib/random-words/words/english/verbs-plural.txt
|
70
164
|
- lib/random-words/words/english/verbs-singular.txt
|
165
|
+
- lib/random-words/words/foulmouth/adjectives.txt
|
166
|
+
- lib/random-words/words/foulmouth/adverbs.txt
|
167
|
+
- lib/random-words/words/foulmouth/articles-plural.txt
|
168
|
+
- lib/random-words/words/foulmouth/articles-singular.txt
|
169
|
+
- lib/random-words/words/foulmouth/clauses.txt
|
170
|
+
- lib/random-words/words/foulmouth/config.yml
|
171
|
+
- lib/random-words/words/foulmouth/conjunctions-coordinating.txt
|
172
|
+
- lib/random-words/words/foulmouth/conjunctions-subordinate.txt
|
173
|
+
- lib/random-words/words/foulmouth/names.txt
|
174
|
+
- lib/random-words/words/foulmouth/nouns-plural.txt
|
175
|
+
- lib/random-words/words/foulmouth/nouns-singular.txt
|
176
|
+
- lib/random-words/words/foulmouth/numbers.yml
|
177
|
+
- lib/random-words/words/foulmouth/phrases.txt
|
178
|
+
- lib/random-words/words/foulmouth/prepositions.txt
|
179
|
+
- lib/random-words/words/foulmouth/terminators.txt
|
180
|
+
- lib/random-words/words/foulmouth/verbs-passive.txt
|
181
|
+
- lib/random-words/words/foulmouth/verbs-plural.txt
|
182
|
+
- lib/random-words/words/foulmouth/verbs-singular.txt
|
183
|
+
- lib/random-words/words/hipster/adjectives.txt
|
184
|
+
- lib/random-words/words/hipster/adverbs.txt
|
185
|
+
- lib/random-words/words/hipster/articles-plural.txt
|
186
|
+
- lib/random-words/words/hipster/articles-singular.txt
|
187
|
+
- lib/random-words/words/hipster/clauses.txt
|
188
|
+
- lib/random-words/words/hipster/config.yml
|
189
|
+
- lib/random-words/words/hipster/conjunctions-coordinating.txt
|
190
|
+
- lib/random-words/words/hipster/conjunctions-subordinate.txt
|
191
|
+
- lib/random-words/words/hipster/names.txt
|
192
|
+
- lib/random-words/words/hipster/nouns-plural.txt
|
193
|
+
- lib/random-words/words/hipster/nouns-singular.txt
|
194
|
+
- lib/random-words/words/hipster/numbers.yml
|
195
|
+
- lib/random-words/words/hipster/phrases.txt
|
196
|
+
- lib/random-words/words/hipster/prepositions.txt
|
197
|
+
- lib/random-words/words/hipster/terminators.txt
|
198
|
+
- lib/random-words/words/hipster/verbs-passive.txt
|
199
|
+
- lib/random-words/words/hipster/verbs-plural.txt
|
200
|
+
- lib/random-words/words/hipster/verbs-singular.txt
|
71
201
|
- lib/random-words/words/latin/adjectives.txt
|
72
202
|
- lib/random-words/words/latin/adverbs.txt
|
73
203
|
- lib/random-words/words/latin/articles-plural.txt
|
74
204
|
- lib/random-words/words/latin/articles-singular.txt
|
75
205
|
- lib/random-words/words/latin/clauses.txt
|
206
|
+
- lib/random-words/words/latin/config.yml
|
207
|
+
- lib/random-words/words/latin/conjunctions-coordinating.txt
|
76
208
|
- lib/random-words/words/latin/conjunctions-subordinate.txt
|
209
|
+
- lib/random-words/words/latin/names.txt
|
77
210
|
- lib/random-words/words/latin/nouns-plural.txt
|
78
211
|
- lib/random-words/words/latin/nouns-singular.txt
|
79
|
-
- lib/random-words/words/latin/numbers.
|
212
|
+
- lib/random-words/words/latin/numbers.yml
|
213
|
+
- lib/random-words/words/latin/phrases.txt
|
214
|
+
- lib/random-words/words/latin/prepositions.txt
|
215
|
+
- lib/random-words/words/latin/terminators.txt
|
80
216
|
- lib/random-words/words/latin/verbs-passive.txt
|
81
217
|
- lib/random-words/words/latin/verbs-plural.txt
|
82
218
|
- lib/random-words/words/latin/verbs-singular.txt
|
219
|
+
- lib/random-words/words/spanish/adjectives.txt
|
220
|
+
- lib/random-words/words/spanish/adverbs.txt
|
221
|
+
- lib/random-words/words/spanish/articles-plural.txt
|
222
|
+
- lib/random-words/words/spanish/articles-singular.txt
|
223
|
+
- lib/random-words/words/spanish/clauses.txt
|
224
|
+
- lib/random-words/words/spanish/config.yml
|
225
|
+
- lib/random-words/words/spanish/conjunctions-coordinating.txt
|
226
|
+
- lib/random-words/words/spanish/conjunctions-subordinate.txt
|
227
|
+
- lib/random-words/words/spanish/names.txt
|
228
|
+
- lib/random-words/words/spanish/nouns-plural.txt
|
229
|
+
- lib/random-words/words/spanish/nouns-singular.txt
|
230
|
+
- lib/random-words/words/spanish/numbers.yml
|
231
|
+
- lib/random-words/words/spanish/phrases.txt
|
232
|
+
- lib/random-words/words/spanish/prepositions.txt
|
233
|
+
- lib/random-words/words/spanish/terminators.txt
|
234
|
+
- lib/random-words/words/spanish/verbs-passive.txt
|
235
|
+
- lib/random-words/words/spanish/verbs-plural.txt
|
236
|
+
- lib/random-words/words/spanish/verbs-singular.txt
|
237
|
+
- lib/random-words/words/veggie/adjectives.txt
|
238
|
+
- lib/random-words/words/veggie/adverbs.txt
|
239
|
+
- lib/random-words/words/veggie/articles-plural.txt
|
240
|
+
- lib/random-words/words/veggie/articles-singular.txt
|
241
|
+
- lib/random-words/words/veggie/clauses.txt
|
242
|
+
- lib/random-words/words/veggie/config.yml
|
243
|
+
- lib/random-words/words/veggie/conjunctions-coordinating.txt
|
244
|
+
- lib/random-words/words/veggie/conjunctions-subordinate.txt
|
245
|
+
- lib/random-words/words/veggie/names.txt
|
246
|
+
- lib/random-words/words/veggie/nouns-plural.txt
|
247
|
+
- lib/random-words/words/veggie/nouns-singular.txt
|
248
|
+
- lib/random-words/words/veggie/numbers.yml
|
249
|
+
- lib/random-words/words/veggie/phrases.txt
|
250
|
+
- lib/random-words/words/veggie/prepositions.txt
|
251
|
+
- lib/random-words/words/veggie/terminators.txt
|
252
|
+
- lib/random-words/words/veggie/verbs-passive.txt
|
253
|
+
- lib/random-words/words/veggie/verbs-plural.txt
|
254
|
+
- lib/random-words/words/veggie/verbs-singular.txt
|
83
255
|
- random-words.gemspec
|
84
256
|
- src/_README.md
|
85
257
|
homepage: https://github.com/ttscoff/random-words
|