cryptozoologist 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fa68d2f7cdabdd773f55ddda0d0fc9fc5f4926aa
4
+ data.tar.gz: b13fd83703a882d98d105df13b2ac77833f3ada4
5
+ SHA512:
6
+ metadata.gz: dcf899674ffccd84cce06c4bae8eddd099505a4857ff3d8ea69e7ccb9558a00b31d9b9ffe3dc4b1df275408101133a9a0de0ac31ef0b3c6b1c05b9deacc8cd90
7
+ data.tar.gz: 1b88d9b5fe3c9f7b971bbd28145f9cec3408b2cbc3754508dfe03935b96cd48a320d8c41ea1f28341d6fcc5d48284af781334c4cd89abf04da27965ff0730435
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1 @@
1
+ 2.3.0
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
4
+ before_install: gem install bundler -v 1.11.2
5
+ notifications:
6
+ email: false
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at me@liz.codes. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in cryptozoologist.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Liz Abinante
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,35 @@
1
+ # Cryptozoologist [![Build Status](https://travis-ci.org/feministy/cryptozoologist.svg?branch=master)](https://travis-ci.org/feministy/cryptozoologist)
2
+
3
+ _Cryptozoologist is a fun little gem written as part of the [Gem guide](https://github.com/feministy/gem-guide) project._
4
+
5
+ Cryptozoologist generates random strings from animal, clothing item, and color pairings. You could get something like "orange-clownfish-turtleneck" or "magenta-three-toed-sloth-shoe-horn". It's fun and silly - it's also very simple, which is why it is used as an example for the Gem guide project.
6
+
7
+ This gem is still in active devemopment; complete documentation _will be added_ as the gem (and the Gem guide) progress!
8
+
9
+ _(No, really, it will be added: it's part of the guide!)_
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'cryptozoologist'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install cryptozoologist
26
+
27
+ ## Usage
28
+
29
+ Right now, this gem doesn't do much of anything except over architect a series of word lists.
30
+
31
+ **Get a random animal:**
32
+
33
+ dictionary = Cryptozoologist::Dictionary.new
34
+ animals = dictionary.animals
35
+ animals.sample
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cryptozoologist"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cryptozoologist/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cryptozoologist"
8
+ spec.version = Cryptozoologist::VERSION
9
+ spec.authors = ["Liz Abinante"]
10
+ spec.email = ["me@liz.codes"]
11
+
12
+ spec.summary = "Generates random strings from animal, clothing item, and color pairings."
13
+ spec.description = "Cryptozoologist generates random strings from animal, clothing item, and color pairings. You could get something like 'orange-clownfish-turtleneck' or 'magenta-three-toed-sloth-shoe-horn'. It's fun and silly - it's also very simple, which is why it is used as an example for the Gem guide project."
14
+ spec.homepage = "https://github.com/feministy/cryptozoologist"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.11"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec", "~> 3.0"
25
+ end
@@ -0,0 +1,11 @@
1
+ require "cryptozoologist/version"
2
+
3
+ directory = "#{File.dirname(__FILE__)}/cryptozoologist/dictionaries/*/*.rb"
4
+ Dir[directory].each { |file| require file }
5
+
6
+ require "cryptozoologist/dictionary"
7
+ require "cryptozoologist/dictionaries"
8
+
9
+ module Cryptozoologist
10
+ # Your code goes here...
11
+ end
@@ -0,0 +1,15 @@
1
+ module Cryptozoologist
2
+ module Dictionaries
3
+ extend self
4
+
5
+ def animals
6
+ list = []
7
+ animal_lists.each { |word_bank| list << word_bank }
8
+ list.flatten
9
+ end
10
+
11
+ private def animal_lists
12
+ [ Animals::Common::LIST, Animals::Mythical::LIST ]
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,534 @@
1
+ module Cryptozoologist
2
+ module Dictionaries
3
+ module Animals
4
+ module Common
5
+ LIST = [
6
+ "abyssinian",
7
+ "affenpinscher",
8
+ "adelie penguin",
9
+ "afghan hound",
10
+ "ainu dog",
11
+ "airedale terrier",
12
+ "akbash",
13
+ "akita",
14
+ "alaskan malamute",
15
+ "albatross",
16
+ "aldabra giant tortoise",
17
+ "alligator",
18
+ "alpine dachsbracke",
19
+ "anatolian shepherd dog",
20
+ "angelfish",
21
+ "ant",
22
+ "anteater",
23
+ "antelope",
24
+ "appenzeller dog",
25
+ "arctic fox",
26
+ "arctic hare",
27
+ "arctic wolf",
28
+ "armadillo",
29
+ "asian elephant",
30
+ "asian giant hornet",
31
+ "asian palm civet",
32
+ "asiatic black bear",
33
+ "australian shepherd",
34
+ "avocet",
35
+ "axolotl",
36
+ "aye aye",
37
+ "baboon",
38
+ "bactrian camel",
39
+ "badger",
40
+ "balinese",
41
+ "banded palm civet",
42
+ "bandicoot",
43
+ "barb",
44
+ "barn owl",
45
+ "barnacle",
46
+ "barracuda",
47
+ "basenji dog",
48
+ "basking shark",
49
+ "basset hound",
50
+ "bat",
51
+ "bavarian mountain hound",
52
+ "beagle",
53
+ "bear",
54
+ "bearded collie",
55
+ "bearded dragon",
56
+ "beaver",
57
+ "bedlington terrier",
58
+ "beetle",
59
+ "bengal tiger",
60
+ "bernese mountain dog",
61
+ "bichon frise",
62
+ "binturong",
63
+ "bird",
64
+ "birds of paradise",
65
+ "birman",
66
+ "bison",
67
+ "black bear",
68
+ "black rhinoceros",
69
+ "black russian terrier",
70
+ "black widow spider",
71
+ "bloodhound",
72
+ "blue lacy dog",
73
+ "blue whale",
74
+ "bluetick coonhound",
75
+ "bobcat",
76
+ "bolognese dog",
77
+ "bombay",
78
+ "bongo",
79
+ "bonobo",
80
+ "booby",
81
+ "border collie",
82
+ "border terrier",
83
+ "bornean orang utan",
84
+ "borneo elephant",
85
+ "boston terrier",
86
+ "bottle nosed dolphin",
87
+ "boxer dog",
88
+ "boykin spaniel",
89
+ "brazilian terrier",
90
+ "brown bear",
91
+ "budgerigar",
92
+ "buffalo",
93
+ "bull mastiff",
94
+ "bull shark",
95
+ "bull terrier",
96
+ "bulldog",
97
+ "bullfrog",
98
+ "bumble bee",
99
+ "burmese",
100
+ "burrowing frog",
101
+ "butterfly",
102
+ "butterfly fish",
103
+ "caiman",
104
+ "caiman lizard",
105
+ "cairn terrier",
106
+ "camel",
107
+ "canaan dog",
108
+ "capybara",
109
+ "caracal",
110
+ "carolina dog",
111
+ "cassowary",
112
+ "cat",
113
+ "caterpillar",
114
+ "catfish",
115
+ "cavalier king charles spaniel",
116
+ "centipede",
117
+ "cesky fousek",
118
+ "chameleon",
119
+ "chamois",
120
+ "cheetah",
121
+ "chesapeake bay retriever",
122
+ "chicken",
123
+ "chihuahua",
124
+ "chimpanzee",
125
+ "chinchilla",
126
+ "chinese crested dog",
127
+ "chinook",
128
+ "chinstrap penguin",
129
+ "chipmunk",
130
+ "chow chow",
131
+ "cichlid",
132
+ "clouded leopard",
133
+ "clown fish",
134
+ "clumber spaniel",
135
+ "coati",
136
+ "cockroach",
137
+ "collared peccary",
138
+ "collie",
139
+ "coral",
140
+ "cottontop tamarin",
141
+ "cougar",
142
+ "cow",
143
+ "coyote",
144
+ "crab",
145
+ "crab eating macaque",
146
+ "crane",
147
+ "crested penguin",
148
+ "crocodile",
149
+ "cross river gorilla",
150
+ "curly coated retriever",
151
+ "cuscus",
152
+ "cuttlefish",
153
+ "dachshund",
154
+ "dalmatian",
155
+ "darwin's frog",
156
+ "deer",
157
+ "desert tortoise",
158
+ "deutsche bracke",
159
+ "dhole",
160
+ "dingo",
161
+ "discus",
162
+ "doberman pinscher",
163
+ "dodo",
164
+ "dog",
165
+ "dogo argentino",
166
+ "dogue de bordeaux",
167
+ "dolphin",
168
+ "donkey",
169
+ "dormouse",
170
+ "dragonfly",
171
+ "drever",
172
+ "duck",
173
+ "dugong",
174
+ "dunker",
175
+ "dusky dolphin",
176
+ "dwarf crocodile",
177
+ "eagle",
178
+ "earwig",
179
+ "eastern gorilla",
180
+ "eastern lowland gorilla",
181
+ "echidna",
182
+ "edible frog",
183
+ "egyptian mau",
184
+ "electric eel",
185
+ "elephant",
186
+ "elephant seal",
187
+ "elephant shrew",
188
+ "emperor penguin",
189
+ "emperor tamarin",
190
+ "emu",
191
+ "english cocker spaniel",
192
+ "english shepherd",
193
+ "english springer spaniel",
194
+ "entlebucher mountain dog",
195
+ "epagneul pont audemer",
196
+ "eskimo dog",
197
+ "estrela mountain dog",
198
+ "falcon",
199
+ "fennec fox",
200
+ "ferret",
201
+ "field spaniel",
202
+ "fin whale",
203
+ "finnish spitz",
204
+ "fire bellied toad",
205
+ "fish",
206
+ "fishing cat",
207
+ "flamingo",
208
+ "flat coat retriever",
209
+ "flounder",
210
+ "fly",
211
+ "flying squirrel",
212
+ "fossa",
213
+ "fox",
214
+ "fox terrier",
215
+ "french bulldog",
216
+ "frigatebird",
217
+ "frilled lizard",
218
+ "frog",
219
+ "fur seal",
220
+ "galapagos penguin",
221
+ "galapagos tortoise",
222
+ "gar",
223
+ "gecko",
224
+ "gentoo penguin",
225
+ "geoffroys tamarin",
226
+ "gerbil",
227
+ "german pinscher",
228
+ "german shepherd",
229
+ "gharial",
230
+ "giant african land snail",
231
+ "giant clam",
232
+ "giant panda bear",
233
+ "giant schnauzer",
234
+ "gibbon",
235
+ "gila monster",
236
+ "giraffe",
237
+ "glass lizard",
238
+ "glow worm",
239
+ "goat",
240
+ "golden lion tamarin",
241
+ "golden oriole",
242
+ "golden retriever",
243
+ "goose",
244
+ "gopher",
245
+ "gorilla",
246
+ "grasshopper",
247
+ "great dane",
248
+ "great white shark",
249
+ "greater swiss mountain dog",
250
+ "green bee eater",
251
+ "greenland dog",
252
+ "grey mouse lemur",
253
+ "grey reef shark",
254
+ "grey seal",
255
+ "greyhound",
256
+ "grizzly bear",
257
+ "grouse",
258
+ "guinea fowl",
259
+ "guinea pig",
260
+ "guppy",
261
+ "hammerhead shark",
262
+ "hamster",
263
+ "hare",
264
+ "harrier",
265
+ "havanese",
266
+ "hedgehog",
267
+ "hercules beetle",
268
+ "hermit crab",
269
+ "heron",
270
+ "highland cattle",
271
+ "himalayan",
272
+ "hippopotamus",
273
+ "honey bee",
274
+ "horn shark",
275
+ "horned frog",
276
+ "horse",
277
+ "horseshoe crab",
278
+ "howler monkey",
279
+ "human",
280
+ "humboldt penguin",
281
+ "hummingbird",
282
+ "humpback whale",
283
+ "hyena",
284
+ "ibis",
285
+ "ibizan hound",
286
+ "iguana",
287
+ "impala",
288
+ "indochinese tiger",
289
+ "indri",
290
+ "insect",
291
+ "irish setter",
292
+ "irish wolfhound",
293
+ "jack russel",
294
+ "jackal",
295
+ "jaguar",
296
+ "japanese chin",
297
+ "japanese macaque",
298
+ "javan rhinoceros",
299
+ "javanese",
300
+ "jellyfish",
301
+ "kakapo",
302
+ "kangaroo",
303
+ "keel billed toucan",
304
+ "killer whale",
305
+ "king crab",
306
+ "king penguin",
307
+ "kingfisher",
308
+ "kiwi",
309
+ "koala",
310
+ "komodo dragon",
311
+ "kudu",
312
+ "labradoodle",
313
+ "labrador retriever",
314
+ "ladybird",
315
+ "leaf tailed gecko",
316
+ "lemming",
317
+ "lemur",
318
+ "leopard",
319
+ "leopard cat",
320
+ "leopard seal",
321
+ "leopard tortoise",
322
+ "liger",
323
+ "lion",
324
+ "lionfish",
325
+ "little penguin",
326
+ "lizard",
327
+ "llama",
328
+ "lobster",
329
+ "long eared owl",
330
+ "lynx",
331
+ "macaroni penguin",
332
+ "macaw",
333
+ "magellanic penguin",
334
+ "magpie",
335
+ "maine coon",
336
+ "malayan civet",
337
+ "malayan tiger",
338
+ "maltese",
339
+ "manatee",
340
+ "mandrill",
341
+ "manta ray",
342
+ "marine toad",
343
+ "markhor",
344
+ "marsh frog",
345
+ "masked palm civet",
346
+ "mastiff",
347
+ "mayfly",
348
+ "meerkat",
349
+ "millipede",
350
+ "minke whale",
351
+ "mole",
352
+ "molly",
353
+ "mongoose",
354
+ "mongrel",
355
+ "monitor lizard",
356
+ "monkey",
357
+ "monte iberia eleuth",
358
+ "moorhen",
359
+ "moose",
360
+ "moray eel",
361
+ "moth",
362
+ "mountain gorilla",
363
+ "mountain lion",
364
+ "mouse",
365
+ "mule",
366
+ "neanderthal",
367
+ "neapolitan mastiff",
368
+ "newfoundland",
369
+ "newt",
370
+ "nightingale",
371
+ "norfolk terrier",
372
+ "norwegian forest",
373
+ "numbat",
374
+ "nurse shark",
375
+ "ocelot",
376
+ "octopus",
377
+ "okapi",
378
+ "old english sheepdog",
379
+ "olm",
380
+ "opossum",
381
+ "orang utan",
382
+ "ostrich",
383
+ "otter",
384
+ "oyster",
385
+ "quail",
386
+ "quetzal",
387
+ "quokka",
388
+ "quoll",
389
+ "rabbit",
390
+ "raccoon",
391
+ "raccoon dog",
392
+ "radiated tortoise",
393
+ "ragdoll",
394
+ "rat",
395
+ "rattlesnake",
396
+ "red knee tarantula",
397
+ "red panda",
398
+ "red wolf",
399
+ "red handed tamarin",
400
+ "reindeer",
401
+ "rhinoceros",
402
+ "river dolphin",
403
+ "river turtle",
404
+ "robin",
405
+ "rock hyrax",
406
+ "rockhopper penguin",
407
+ "roseate spoonbill",
408
+ "rottweiler",
409
+ "royal penguin",
410
+ "russian blue",
411
+ "sabre toothed tiger",
412
+ "saint bernard",
413
+ "salamander",
414
+ "sand lizard",
415
+ "saola",
416
+ "scorpion",
417
+ "scorpion fish",
418
+ "sea dragon",
419
+ "sea lion",
420
+ "sea otter",
421
+ "sea slug",
422
+ "sea squirt",
423
+ "sea turtle",
424
+ "sea urchin",
425
+ "seahorse",
426
+ "seal",
427
+ "serval",
428
+ "sheep",
429
+ "shih tzu",
430
+ "shrimp",
431
+ "siamese",
432
+ "siamese fighting fish",
433
+ "siberian",
434
+ "siberian husky",
435
+ "siberian tiger",
436
+ "silver dollar",
437
+ "skunk",
438
+ "sloth",
439
+ "slow worm",
440
+ "snail",
441
+ "snake",
442
+ "snapping turtle",
443
+ "snowshoe",
444
+ "snowy owl",
445
+ "somali",
446
+ "south china tiger",
447
+ "spadefoot toad",
448
+ "sparrow",
449
+ "spectacled bear",
450
+ "sperm whale",
451
+ "spider monkey",
452
+ "spiny dogfish",
453
+ "sponge",
454
+ "squid",
455
+ "squirrel",
456
+ "squirrel monkey",
457
+ "sri lankan elephant",
458
+ "staffordshire bull terrier",
459
+ "stag beetle",
460
+ "starfish",
461
+ "stellers sea cow",
462
+ "stick insect",
463
+ "stingray",
464
+ "stoat",
465
+ "striped rocket frog",
466
+ "sun bear",
467
+ "swan",
468
+ "tang",
469
+ "tapir",
470
+ "tarsier",
471
+ "tasmanian devil",
472
+ "tawny owl",
473
+ "termite",
474
+ "tetra",
475
+ "thorny devil",
476
+ "tibetan mastiff",
477
+ "tiffany",
478
+ "tiger",
479
+ "tiger salamander",
480
+ "tiger shark",
481
+ "tortoise",
482
+ "toucan",
483
+ "tree frog",
484
+ "tropicbird",
485
+ "tuatara",
486
+ "turkey",
487
+ "turkish angora",
488
+ "uakari",
489
+ "uguisu",
490
+ "umbrellabird",
491
+ "vampire bat",
492
+ "vervet monkey",
493
+ "vulture",
494
+ "wallaby",
495
+ "walrus",
496
+ "warthog",
497
+ "wasp",
498
+ "water buffalo",
499
+ "water dragon",
500
+ "water vole",
501
+ "weasel",
502
+ "welsh corgi",
503
+ "west highland terrier",
504
+ "western gorilla",
505
+ "western lowland gorilla",
506
+ "whale shark",
507
+ "whippet",
508
+ "white faced capuchin",
509
+ "white rhinoceros",
510
+ "white tiger",
511
+ "wild boar",
512
+ "wildebeest",
513
+ "wolf",
514
+ "wolverine",
515
+ "wombat",
516
+ "woodlouse",
517
+ "woodpecker",
518
+ "woolly mammoth",
519
+ "woolly monkey",
520
+ "wrasse",
521
+ "x ray tetra",
522
+ "yak",
523
+ "yellow eyed penguin",
524
+ "yorkshire terrier",
525
+ "zebra",
526
+ "zebra shark",
527
+ "zebu",
528
+ "zonkey",
529
+ "zorse"
530
+ ]
531
+ end
532
+ end
533
+ end
534
+ end
@@ -0,0 +1,91 @@
1
+ module Cryptozoologist
2
+ module Dictionaries
3
+ module Animals
4
+ module Mythical
5
+ LIST = [
6
+ "abraxan",
7
+ "aethonan",
8
+ "alicorn",
9
+ "banshee",
10
+ "basilisk",
11
+ "bigfoot",
12
+ "blast ended skrewt",
13
+ "bogeyman",
14
+ "bogle",
15
+ "bowtruckle",
16
+ "brownie",
17
+ "centaur",
18
+ "cerberus",
19
+ "charybdis",
20
+ "chimera",
21
+ "cockatrice",
22
+ "cyclops",
23
+ "cynocephalus",
24
+ "dementor",
25
+ "demon",
26
+ "doppelganger",
27
+ "doxy",
28
+ "dragon",
29
+ "dwarf",
30
+ "elf",
31
+ "fairy",
32
+ "flobberworm",
33
+ "ghost",
34
+ "ghoul",
35
+ "giant squid",
36
+ "gnome",
37
+ "goblin",
38
+ "golem",
39
+ "gorgon",
40
+ "granian",
41
+ "griffin",
42
+ "grindylow",
43
+ "hippogriff",
44
+ "hobgoblin",
45
+ "hydra",
46
+ "imp",
47
+ "kneazle",
48
+ "ladon",
49
+ "leprechaun",
50
+ "loch ness monster",
51
+ "manticore",
52
+ "medusa",
53
+ "mermaid",
54
+ "minotaur",
55
+ "moke",
56
+ "mothman",
57
+ "niffler",
58
+ "nymph",
59
+ "ogre",
60
+ "orthros",
61
+ "pegasus",
62
+ "phoenix",
63
+ "pixie",
64
+ "puffskein",
65
+ "pygmy puff",
66
+ "sasquatch",
67
+ "satyr",
68
+ "scylla",
69
+ "shade",
70
+ "shapeshifter",
71
+ "siren",
72
+ "sphinx",
73
+ "sprite",
74
+ "sylph",
75
+ "thestral",
76
+ "thunderbird",
77
+ "troll",
78
+ "typhon",
79
+ "unicorn",
80
+ "valkyrie",
81
+ "vampire",
82
+ "wendigo",
83
+ "will o the wisp",
84
+ "werewolf",
85
+ "wraith",
86
+ "zombie"
87
+ ]
88
+ end
89
+ end
90
+ end
91
+ end
@@ -0,0 +1,13 @@
1
+ module Cryptozoologist
2
+ class Dictionary
3
+ def initialize
4
+ @animals = []
5
+ end
6
+
7
+ def animals
8
+ @animals if @animals.any?
9
+ @animals = Dictionaries.animals
10
+ @animals
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ module Cryptozoologist
2
+ VERSION = "1.0.0"
3
+ end
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cryptozoologist
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Liz Abinante
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-04-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: Cryptozoologist generates random strings from animal, clothing item,
56
+ and color pairings. You could get something like 'orange-clownfish-turtleneck' or
57
+ 'magenta-three-toed-sloth-shoe-horn'. It's fun and silly - it's also very simple,
58
+ which is why it is used as an example for the Gem guide project.
59
+ email:
60
+ - me@liz.codes
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - ".gitignore"
66
+ - ".rspec"
67
+ - ".ruby-version"
68
+ - ".travis.yml"
69
+ - CODE_OF_CONDUCT.md
70
+ - Gemfile
71
+ - LICENSE.txt
72
+ - README.md
73
+ - Rakefile
74
+ - bin/console
75
+ - bin/setup
76
+ - cryptozoologist.gemspec
77
+ - lib/cryptozoologist.rb
78
+ - lib/cryptozoologist/dictionaries.rb
79
+ - lib/cryptozoologist/dictionaries/animals/common.rb
80
+ - lib/cryptozoologist/dictionaries/animals/mythical.rb
81
+ - lib/cryptozoologist/dictionary.rb
82
+ - lib/cryptozoologist/version.rb
83
+ homepage: https://github.com/feministy/cryptozoologist
84
+ licenses:
85
+ - MIT
86
+ metadata: {}
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 2.5.1
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: Generates random strings from animal, clothing item, and color pairings.
107
+ test_files: []