pickaname 0.1.4 → 0.1.5

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.
data/lib/data/dark.txt ADDED
@@ -0,0 +1,198 @@
1
+ abstruse
2
+ esoteric
3
+ recondite
4
+ cloaked
5
+ concealed
6
+ disguised
7
+ masked
8
+ shrouded
9
+ beclouded
10
+ bedimmed
11
+ befogged
12
+ clouded
13
+ cloudy
14
+ dim
15
+ faint
16
+ foggy
17
+ fuzzy
18
+ hazy
19
+ indistinct
20
+ indistinguishable
21
+ misty
22
+ muddy
23
+ obfuscatory
24
+ obnubilated
25
+ obscurant
26
+ shaded
27
+ shadowlike
28
+ shadowy
29
+ sphinxlike
30
+ indefinite
31
+ inexact
32
+ inexplicit
33
+ noncommittal
34
+ questionable
35
+ unclear
36
+ uncertain
37
+ undefined
38
+ undetermined
39
+ vague
40
+ impenetrable
41
+ incomprehensible
42
+ indecipherable
43
+ inexplicable
44
+ eerie
45
+ uncanny
46
+ weird
47
+ impalpable
48
+ inappreciable
49
+ intangible
50
+ invisible
51
+ unanswerable
52
+ unknowable
53
+ baffling
54
+ bewildering
55
+ confounding
56
+ confusing
57
+ mystifying
58
+ perplexing
59
+ puzzling
60
+ unfathomable
61
+ circuitous
62
+ indirect
63
+ roundabout
64
+ complex
65
+ complicated
66
+ difficult
67
+ obtuse
68
+ comprehensible
69
+ fathomable
70
+ intelligible
71
+ knowable
72
+ legible
73
+ pellucid
74
+ understandable
75
+ bright
76
+ distinct
77
+ evident
78
+ self-evident
79
+ self-explanatory
80
+ certain
81
+ firm
82
+ strong
83
+ sure
84
+ defined
85
+ determined
86
+ direct
87
+ straightforward
88
+ definite
89
+ exact
90
+ explicit
91
+ appreciable
92
+ palpable
93
+ tangible
94
+ visible
95
+ blatant
96
+ patent
97
+ unmistakable
98
+ dark
99
+ darkling
100
+ fuzzy
101
+ murky
102
+ obscure
103
+ shadowy
104
+ vague
105
+ ambiguous
106
+ equivocal
107
+ imponderable
108
+ incomprehensible
109
+ unfathomable
110
+ unintelligible
111
+ unsearchable
112
+ inexplicable
113
+ unaccountable
114
+ unexplainable
115
+ unanswerable
116
+ unknowable
117
+ metaphysical
118
+ mystical
119
+ numinous
120
+ supernatural
121
+ abstruse
122
+ esoteric
123
+ recondite
124
+ baffling
125
+ befuddling
126
+ bewildering
127
+ confounding
128
+ confusing
129
+ disorienting
130
+ mystifying
131
+ perplexing
132
+ puzzling
133
+ crepuscular
134
+ twilit
135
+ moonless
136
+ starless
137
+ sunless
138
+ cloudy
139
+ dull
140
+ dulled
141
+ lackluster
142
+ shadowlike
143
+ shadowy
144
+ shady
145
+ gray
146
+ leaden
147
+ pale
148
+ beclouded
149
+ befogged
150
+ clouded
151
+ foggy
152
+ fuliginous
153
+ misty
154
+ smoggy
155
+ soupy
156
+ blue
157
+ dejected
158
+ depressed
159
+ despondent
160
+ down
161
+ droopy
162
+ hangdog
163
+ inconsolable
164
+ low
165
+ melancholic
166
+ melancholy
167
+ mirthless
168
+ sad
169
+ unhappy
170
+ woebegone
171
+ woeful
172
+ dim
173
+ discomfiting
174
+ discouraging
175
+ disheartening
176
+ dismaying
177
+ dispiriting
178
+ distressful
179
+ distressing
180
+ upsetting
181
+ desperate
182
+ hopeless
183
+ pessimistic
184
+ lamentable
185
+ mournful
186
+ plaintive
187
+ sorrowful
188
+ colorless
189
+ drab
190
+ dull
191
+ dour
192
+ grim
193
+ lowering
194
+ lowery
195
+ menacing
196
+ negative
197
+ oppressive
198
+ threatening
data/lib/data/funny.txt CHANGED
@@ -11,3 +11,20 @@ snolly
11
11
  toon
12
12
  bro
13
13
  poopy
14
+ drama
15
+ quire
16
+ lick
17
+ crabby
18
+ smelly
19
+ ass
20
+ jack
21
+ blubber
22
+ doozy
23
+ gibberish
24
+ bitty
25
+ bitch
26
+ wishy
27
+ butt
28
+ cry
29
+ baby
30
+ juicy
@@ -1,3 +1,3 @@
1
1
  module Pickaname
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
data/lib/pickaname.rb CHANGED
@@ -7,6 +7,9 @@ module Pickaname
7
7
  PREFIX = File.foreach(File.join(File.dirname(__FILE__), '.', 'data', 'prefix.txt')).map { |line| line.split(' ') }
8
8
  SUFFIX = File.foreach(File.join(File.dirname(__FILE__), '.', 'data', 'suffix.txt')).map { |line| line.split(' ') }
9
9
  FUNNY = File.foreach(File.join(File.dirname(__FILE__), '.', 'data', 'funny.txt')).map { |line| line.split(' ') }
10
+ COMMON = File.foreach(File.join(File.dirname(__FILE__), '.', 'data', 'common.txt')).map { |line| line.split(' ') }
11
+ DARK = File.foreach(File.join(File.dirname(__FILE__), '.', 'data', 'dark.txt')).map { |line| line.split(' ') }
12
+
10
13
  PREFIX_SIZE = 1
11
14
  SUFFIX_SIZE = 1
12
15
 
@@ -16,15 +19,23 @@ module Pickaname
16
19
  @name = random_string
17
20
  end
18
21
 
19
- def self.pseudo
20
- @name = PREFIX.sample(PREFIX_SIZE).join << SUFFIX.sample(SUFFIX_SIZE).join
22
+ # def self.pseudo
23
+ # @name = PREFIX.sample(PREFIX_SIZE).join << SUFFIX.sample(SUFFIX_SIZE).join
24
+ # end
25
+
26
+ def self.common
27
+ @name = COMMON.sample(PREFIX_SIZE).join << COMMON.sample(SUFFIX_SIZE).join
21
28
  end
22
29
 
23
30
  def self.funny
24
- @name = FUNNY.sample(PREFIX_SIZE).join << FUNNY.sample(SUFFIX_SIZE).join
31
+ @name = COMMON.sample(PREFIX_SIZE).join << FUNNY.sample(SUFFIX_SIZE).join
32
+ end
33
+
34
+ def self.dark
35
+ @name = COMMON.sample(PREFIX_SIZE).join << DARK.sample(SUFFIX_SIZE).join
25
36
  end
26
37
 
27
- def self.random(record = Robot.new)
38
+ def self.random_letters(record = Robot.new)
28
39
  @name = record.random_string
29
40
  end
30
41
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pickaname
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karan
@@ -26,6 +26,8 @@ files:
26
26
  - Rakefile
27
27
  - bin/console
28
28
  - bin/setup
29
+ - lib/data/common.txt
30
+ - lib/data/dark.txt
29
31
  - lib/data/funny.txt
30
32
  - lib/data/prefix.txt
31
33
  - lib/data/suffix.txt