faker-dal 0.1.0
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 +7 -0
- data/CONTRIBUTING.rst +78 -0
- data/LICENSE +32 -0
- data/README.rst +123 -0
- data/lib/faker/creature/dog/dalmatian.rb +100 -0
- data/lib/faker/creature/dog/locales/en.yml +548 -0
- metadata +101 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f1d6557d7cabe923a3f9d8745a4a20f24abacbf145b4e9d8b803b051c4f843e1
|
|
4
|
+
data.tar.gz: ab1997014272178ecebb9ccf8dda0950d403407f1821282228524da630e612b0
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f0cc9ee8896ec01790f6a0e31e6ae38e9c7f6e8bf292872bd0e00e3633d212e002a98b0185cf2dffbd4fd84f6dce189eba2bcb6b3b4c7672a982be263e22d5da
|
|
7
|
+
data.tar.gz: 90979e14e08754fb50fb68a00f3960aa6ae3f9d8ea0a45c483ec9eb9fd4add8511eef1227b40d092f0a47d5bf433dda81b016a60f57f3819a4b139acd1f6e1e1
|
data/CONTRIBUTING.rst
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
==========================================
|
|
2
|
+
Contribution Guide for Fake Dalmatians
|
|
3
|
+
==========================================
|
|
4
|
+
:Author:
|
|
5
|
+
* **Anna Wilcox**
|
|
6
|
+
:Copyright:
|
|
7
|
+
© 2026 Anna Wilcox. NCSA open source licence.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
Introduction
|
|
13
|
+
============
|
|
14
|
+
|
|
15
|
+
This repository contains the code for **faker-dal**, a plugin for the Faker Gem
|
|
16
|
+
that adds the most important category possible to it: Dalmatians.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Code style
|
|
22
|
+
==========
|
|
23
|
+
|
|
24
|
+
Contributions are expected to maintain a consistent code style. This ensures
|
|
25
|
+
readable and future maintainability, since all the code will look and feel the
|
|
26
|
+
same. Use Rubocop to check your code. No code will be accepted that does not
|
|
27
|
+
pass Rubocop checks. Line length is strictly capped at 100 characters for
|
|
28
|
+
source code, and 80 characters for documentation files.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
Comments
|
|
32
|
+
````````
|
|
33
|
+
|
|
34
|
+
Comments should be used where necessary, or to explain code that is not
|
|
35
|
+
immediately obvious to at least a novice programmer.
|
|
36
|
+
|
|
37
|
+
Documentation must be present for every module, class, function, and method.
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
Tabs
|
|
41
|
+
````
|
|
42
|
+
|
|
43
|
+
Soft tabs are used with a 2 space width. Hard tabs (\t) must not be used.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
Contributing Changes
|
|
49
|
+
====================
|
|
50
|
+
|
|
51
|
+
This section describes the usual flows of contribution to this repository.
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
Codeberg Pull Requests
|
|
55
|
+
``````````````````````
|
|
56
|
+
|
|
57
|
+
#. If you do not already have a Codeberg account, you must create one.
|
|
58
|
+
|
|
59
|
+
#. Create a *fork* of the spotcheck-fe repository. For more information,
|
|
60
|
+
consult the Codeberg online documentation.
|
|
61
|
+
|
|
62
|
+
#. Clone your forked repository to your computer.
|
|
63
|
+
|
|
64
|
+
#. Make your changes.
|
|
65
|
+
|
|
66
|
+
#. Test your changes to ensure they are correct.
|
|
67
|
+
|
|
68
|
+
#. Add (or remove) changed files using ``git add`` and ``git rm``.
|
|
69
|
+
|
|
70
|
+
#. Commit your changes to the tree using the command ``git commit`` and
|
|
71
|
+
``git push``.
|
|
72
|
+
|
|
73
|
+
#. Visit your forked repository in a Web browser.
|
|
74
|
+
|
|
75
|
+
#. Choose the *Create Pull Request* button.
|
|
76
|
+
|
|
77
|
+
#. Review your changes to ensure they are correct, and then submit the form.
|
|
78
|
+
|
data/LICENSE
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Copyright (c) 2026 Anna Wilcox.
|
|
2
|
+
All rights reserved.
|
|
3
|
+
|
|
4
|
+
Developed by: Anna Wilcox
|
|
5
|
+
https://dalmatian.life/
|
|
6
|
+
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
8
|
+
a copy of this software and associated documentation files (the
|
|
9
|
+
"Software"), to deal with the Software without restriction, including
|
|
10
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
11
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
12
|
+
permit persons to whom the Software is furnished to do so, subject
|
|
13
|
+
to the following conditions:
|
|
14
|
+
|
|
15
|
+
Redistributions of source code must retain the above copyright
|
|
16
|
+
notice, this list of conditions and the following disclaimers.
|
|
17
|
+
|
|
18
|
+
Redistributions in binary form must reproduce the above copyright
|
|
19
|
+
notice, this list of conditions and the following disclaimers in
|
|
20
|
+
the documentation and/or other materials provided with the distribution.
|
|
21
|
+
|
|
22
|
+
Neither the names of Anna Wilcox nor the names of any contributors may
|
|
23
|
+
be used to endorse or promote products derived from this Software
|
|
24
|
+
without specific prior written permission.
|
|
25
|
+
|
|
26
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
27
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
28
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
29
|
+
IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE
|
|
30
|
+
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
31
|
+
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
32
|
+
WITH THE SOFTWARE.
|
data/README.rst
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
==============================
|
|
2
|
+
README for Fake Dalmatians
|
|
3
|
+
==============================
|
|
4
|
+
:Authors:
|
|
5
|
+
* **Anna Wilcox**
|
|
6
|
+
:Status:
|
|
7
|
+
Released
|
|
8
|
+
:Copyright:
|
|
9
|
+
© 2026 Anna Wilcox. NCSA open source license.
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
.. image:: https://img.shields.io/badge/license-NCSA-lightgrey.svg
|
|
13
|
+
:target: LICENSE
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
Introduction
|
|
17
|
+
============
|
|
18
|
+
|
|
19
|
+
This repository contains the code for **faker-dal**, a plugin for the `Faker
|
|
20
|
+
RubyGem`_ that adds the most important category possible to it: the Hundred and
|
|
21
|
+
One Dalmatians.
|
|
22
|
+
|
|
23
|
+
This includes every known, named dog from all known incarnations of this series
|
|
24
|
+
in media, *and* every episode title from *both* television series!
|
|
25
|
+
|
|
26
|
+
It also includes
|
|
27
|
+
|
|
28
|
+
.. _`Faker RubyGem`: https://rubygems.org/gems/faker
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
License
|
|
32
|
+
```````
|
|
33
|
+
This Gem is provided under the NCSA open source license.
|
|
34
|
+
|
|
35
|
+
The names of the characters are assumed to be copyrighted by either the estate
|
|
36
|
+
of Dodie Smith and/or Disney, but it is believed this is Fair Use because:
|
|
37
|
+
|
|
38
|
+
* The purpose and character of this use is not for commercial nature; it is
|
|
39
|
+
strictly of a non-profit nature.
|
|
40
|
+
* The nature of the work(s) are books, films, and television series. This is
|
|
41
|
+
a computer programming library used for generating fake names for test data.
|
|
42
|
+
* The amount of the copyrighted work(s) used is extremely small. It is just
|
|
43
|
+
the names of the characters, and the titles of the episodes. No actual
|
|
44
|
+
creative content besides the names is present.
|
|
45
|
+
* The effect of the use on the market: It may actually increase it, because
|
|
46
|
+
more people will be thinking about Dalmatians!
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
Changes
|
|
50
|
+
```````
|
|
51
|
+
Any changes to this repository must be reviewed before being pushed to the
|
|
52
|
+
current branch. There are no exceptions to this rule. For security-sensitive
|
|
53
|
+
updates, contact Anna Wilcox, preferrably using PGP-encrypted email or via
|
|
54
|
+
Signal. Reach out to me for contact information.
|
|
55
|
+
|
|
56
|
+
Though I'm not certain what security updates could be needed for a Gem about
|
|
57
|
+
dogs. If we escape the kennels, we'll just come back for dinner time.
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
Usage
|
|
62
|
+
=====
|
|
63
|
+
|
|
64
|
+
The entirety of the Gem is contained in the ``Faker::Creature::Dog::Dalmatian``
|
|
65
|
+
class. There are a number of methods:
|
|
66
|
+
|
|
67
|
+
* ``name``
|
|
68
|
+
|
|
69
|
+
Produce a random name for a Dalmatian. This could be any of them.
|
|
70
|
+
|
|
71
|
+
* ``classic_name``
|
|
72
|
+
|
|
73
|
+
Produce a random name for a Dalmatian, limited to the original 101 (or,
|
|
74
|
+
really, 65). This *might* be what you want for familiarity's sake.
|
|
75
|
+
|
|
76
|
+
* ``popular_name``
|
|
77
|
+
|
|
78
|
+
Produce a random name for a Dalmatian, limited to those who have developed
|
|
79
|
+
personalities. This includes the ones with speaking roles in the book, films,
|
|
80
|
+
and series. This is *probably* what you actually want if you're using this.
|
|
81
|
+
|
|
82
|
+
* ``street_name``
|
|
83
|
+
|
|
84
|
+
Produce a random name for a Dalmatian, limited to 101 Dalmatian Street.
|
|
85
|
+
|
|
86
|
+
* ``one_hundred_and_two_name``
|
|
87
|
+
|
|
88
|
+
Produce a random name for a Dalmatian, limited to 102 Dalmatians.
|
|
89
|
+
|
|
90
|
+
* ``series_episode``
|
|
91
|
+
|
|
92
|
+
Produce a random episode title from *101 Dalmatians: The Series* (1997).
|
|
93
|
+
|
|
94
|
+
* ``street_episode``
|
|
95
|
+
|
|
96
|
+
Produce a random episode title from *101 Dalmatian Street*.
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
Supported Environments
|
|
101
|
+
======================
|
|
102
|
+
|
|
103
|
+
It's just a RubyGem. It should work on any version of Ruby that ``faker``
|
|
104
|
+
supports, and that should include alternate runtimes like JRuby.
|
|
105
|
+
|
|
106
|
+
I do the majority of my testing on my Apple Silicon Mac (aarch64) running both
|
|
107
|
+
the Mac OS and Adélie Linux.
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
Building
|
|
112
|
+
========
|
|
113
|
+
|
|
114
|
+
``gem build``
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
Reporting Issues
|
|
119
|
+
================
|
|
120
|
+
|
|
121
|
+
If you're wanting to report an issue, please go for it, but I'm not sure what
|
|
122
|
+
it would be about. If you have some sort of source that provides more names
|
|
123
|
+
for the Dalmatians, that would be a great issue to report.
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'faker'
|
|
4
|
+
require 'i18n'
|
|
5
|
+
|
|
6
|
+
I18n.load_path += Dir[File.join(__dir__, 'locales', '**/*.yml')]
|
|
7
|
+
|
|
8
|
+
module Faker
|
|
9
|
+
class Creature
|
|
10
|
+
class Dog
|
|
11
|
+
##
|
|
12
|
+
# Life is more fun with spots.
|
|
13
|
+
class Dalmatian < Base
|
|
14
|
+
flexible :dalmatian
|
|
15
|
+
|
|
16
|
+
VERSION = '0.1.0'
|
|
17
|
+
|
|
18
|
+
class << self
|
|
19
|
+
##
|
|
20
|
+
# Produce a random name for a Dalmatian.
|
|
21
|
+
#
|
|
22
|
+
# @return [String]
|
|
23
|
+
#
|
|
24
|
+
# @example
|
|
25
|
+
# Faker::Creature::Dog::Dalmatian.name #=> "Da Vinci"
|
|
26
|
+
def name
|
|
27
|
+
fetch('creature.dog.dalmatian.name')
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
##
|
|
31
|
+
# Produce a random name for a Dalmatian, limited to the original Hundred and One.
|
|
32
|
+
#
|
|
33
|
+
# @return [String]
|
|
34
|
+
#
|
|
35
|
+
# @example
|
|
36
|
+
# Faker::Creature::Dog::Dalmatian.classic_name #=> "Perdita"
|
|
37
|
+
def classic_name
|
|
38
|
+
fetch('creature.dog.dalmatian.classic_name')
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
##
|
|
42
|
+
# Produce a random name for a Dalmatian, limited to 'popular' Dalmatians.
|
|
43
|
+
# Basically, the ones who have developed personalities in at least one media.
|
|
44
|
+
#
|
|
45
|
+
# @return [String]
|
|
46
|
+
#
|
|
47
|
+
# @example
|
|
48
|
+
# Faker::Creature::Dog::Dalmatian.popular_name #=> "Cadpig"
|
|
49
|
+
def popular_name
|
|
50
|
+
fetch('creature.dog.dalmatian.popular_name')
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
##
|
|
54
|
+
# Produce a random name for a Dalmatian, limited to 101 Dalmatian Street.
|
|
55
|
+
#
|
|
56
|
+
# @return [String]
|
|
57
|
+
#
|
|
58
|
+
# @example
|
|
59
|
+
# Faker::Creature::Dog::Dalmatian.street_name #=> "Delilah"
|
|
60
|
+
def street_name
|
|
61
|
+
fetch('creature.dog.dalmatian.street_name')
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
##
|
|
65
|
+
# Produce a random name for a Dalmatian, limited to the 102 Dalmatians film.
|
|
66
|
+
#
|
|
67
|
+
# @return [String]
|
|
68
|
+
#
|
|
69
|
+
# @example
|
|
70
|
+
# Faker::Creature::Dog::Dalmatian.one_hundred_and_two_name #=> "Domino"
|
|
71
|
+
def one_hundred_and_two_name
|
|
72
|
+
fetch('creature.dog.dalmatian.102_name')
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
##
|
|
76
|
+
# Produce a random episode title from the original series.
|
|
77
|
+
#
|
|
78
|
+
# @return [String]
|
|
79
|
+
#
|
|
80
|
+
# @example
|
|
81
|
+
# Faker::Creature::Dog::Dalmatian.series_episode #=> "You Slipped a Disk"
|
|
82
|
+
def series_episode
|
|
83
|
+
fetch('creature.dog.dalmatian.series_episode')
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
##
|
|
87
|
+
# Produce a random episode title from 101 Dalmatian Street.
|
|
88
|
+
#
|
|
89
|
+
# @return [String]
|
|
90
|
+
#
|
|
91
|
+
# @example
|
|
92
|
+
# Faker::Creature::Dog::Dalmatian.street_episode #=> "Doggy Da Vinci"
|
|
93
|
+
def street_episode
|
|
94
|
+
fetch('creature.dog.dalmatian.street_episode')
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
@@ -0,0 +1,548 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
creature:
|
|
4
|
+
dog:
|
|
5
|
+
dalmatian:
|
|
6
|
+
classic_name:
|
|
7
|
+
- Pongo
|
|
8
|
+
- Perdita
|
|
9
|
+
- Cadpig # In the book, and the 1997 series, but not in either film.
|
|
10
|
+
- Patch
|
|
11
|
+
- Penny
|
|
12
|
+
- Pepper
|
|
13
|
+
- Freckles
|
|
14
|
+
- Rolly # Or "Roly-Poly", if you prefer.
|
|
15
|
+
- Dipstick # Live action film names begin here
|
|
16
|
+
- Wizzer
|
|
17
|
+
- Jewel
|
|
18
|
+
- Fidget
|
|
19
|
+
- Two-Tone # Live action film names end here - all shown in the 1997 series, as well
|
|
20
|
+
- Blob # Alt names from the "Lucky Puppy" book begin here
|
|
21
|
+
- Blot
|
|
22
|
+
- Dot
|
|
23
|
+
- Jolly
|
|
24
|
+
- Latch
|
|
25
|
+
- Lenny
|
|
26
|
+
- Salter
|
|
27
|
+
- Blackie
|
|
28
|
+
- Whitie # Alt names from "Lucky Puppy" end here
|
|
29
|
+
- Lucky
|
|
30
|
+
- Gay # And his adoptive-sister-turned-mate (don't look at me, I didn't write it)
|
|
31
|
+
# All of the above names (except Gay) were implied to be Pongo and Perdy's own.
|
|
32
|
+
# From here, these are their adoptive dogs with known names.
|
|
33
|
+
# You could argue that perhaps they had an additional litter. If you combine them all,
|
|
34
|
+
# you *almost* get the whole lot!
|
|
35
|
+
- Duke # The 1997 series begins here.
|
|
36
|
+
- Furball
|
|
37
|
+
- Hammer
|
|
38
|
+
- Hoover
|
|
39
|
+
- Pickle
|
|
40
|
+
- Playdoh
|
|
41
|
+
- Pooh
|
|
42
|
+
- Rover
|
|
43
|
+
- Sa-Sa
|
|
44
|
+
- Smokey
|
|
45
|
+
- Spotty
|
|
46
|
+
- Tripod # The 1997 series ends here.
|
|
47
|
+
- Bravo # Officially licensed Disney plush and Lego toys round out the list.
|
|
48
|
+
- Bulgey
|
|
49
|
+
- Bump
|
|
50
|
+
- Corky
|
|
51
|
+
- Dipper
|
|
52
|
+
- Disco
|
|
53
|
+
- Flapper
|
|
54
|
+
- Ham
|
|
55
|
+
- Harvey
|
|
56
|
+
- Hoofer
|
|
57
|
+
- Hungry
|
|
58
|
+
- Inky
|
|
59
|
+
- Missy
|
|
60
|
+
- Nosey
|
|
61
|
+
- Pokey
|
|
62
|
+
- Puddles
|
|
63
|
+
- Scooter
|
|
64
|
+
- Sleepy
|
|
65
|
+
- Smokey
|
|
66
|
+
- Sniff
|
|
67
|
+
- Spanky
|
|
68
|
+
- Spark
|
|
69
|
+
- Spatter
|
|
70
|
+
- Speedy
|
|
71
|
+
- Sport
|
|
72
|
+
- Swifty
|
|
73
|
+
- Tiger
|
|
74
|
+
- Tiresome
|
|
75
|
+
- Wags
|
|
76
|
+
- Yank
|
|
77
|
+
- Yoyo
|
|
78
|
+
102_name:
|
|
79
|
+
- Dipstick
|
|
80
|
+
- Dottie # 102 Dalmatians gives us Dipstick's mate and three named pups
|
|
81
|
+
- Little Dipper
|
|
82
|
+
- Oddball
|
|
83
|
+
- Domino
|
|
84
|
+
street_name:
|
|
85
|
+
- Doug
|
|
86
|
+
- Delilah
|
|
87
|
+
- Dolly
|
|
88
|
+
- Dylan
|
|
89
|
+
- Da Vinci
|
|
90
|
+
- Dallas
|
|
91
|
+
- Dante
|
|
92
|
+
- Dawkins
|
|
93
|
+
- Dee Dee
|
|
94
|
+
- Deepak
|
|
95
|
+
- Déjà Vu
|
|
96
|
+
- Delgado
|
|
97
|
+
- Destiny
|
|
98
|
+
- Diesel
|
|
99
|
+
- Dimitri 1
|
|
100
|
+
- Dimitri 2
|
|
101
|
+
- Dimitri 3
|
|
102
|
+
- Dizzy
|
|
103
|
+
- DJ
|
|
104
|
+
- Dorothy
|
|
105
|
+
- Dafydd
|
|
106
|
+
- Dai-ichi
|
|
107
|
+
- Dakota
|
|
108
|
+
- Daley
|
|
109
|
+
- Dalmar
|
|
110
|
+
- Dalston
|
|
111
|
+
- Damian
|
|
112
|
+
- Dandy
|
|
113
|
+
- Dane
|
|
114
|
+
- Dani
|
|
115
|
+
- Daoud
|
|
116
|
+
- Daphne
|
|
117
|
+
- Dapple
|
|
118
|
+
- Dara
|
|
119
|
+
- Darby
|
|
120
|
+
- Darcy
|
|
121
|
+
- Darien
|
|
122
|
+
- Darius
|
|
123
|
+
- Dax
|
|
124
|
+
- Dean
|
|
125
|
+
- Debbie-Lee
|
|
126
|
+
- Debbie-Lou
|
|
127
|
+
- Debbie-May
|
|
128
|
+
- December
|
|
129
|
+
- Dechang
|
|
130
|
+
- Declan
|
|
131
|
+
- Delphie
|
|
132
|
+
- Delta
|
|
133
|
+
- Deneesha
|
|
134
|
+
- Denim
|
|
135
|
+
- Denver
|
|
136
|
+
- Denzel
|
|
137
|
+
- Derek
|
|
138
|
+
- Desiree
|
|
139
|
+
- Desmond
|
|
140
|
+
- Deuce
|
|
141
|
+
- Devon
|
|
142
|
+
- Diamond
|
|
143
|
+
- Diana
|
|
144
|
+
- Dibs
|
|
145
|
+
- Diego
|
|
146
|
+
- Dieter
|
|
147
|
+
- Dijon
|
|
148
|
+
- Dilma
|
|
149
|
+
- Dimple
|
|
150
|
+
- Dinga
|
|
151
|
+
- Dingo
|
|
152
|
+
- Dinlo
|
|
153
|
+
- Dionne
|
|
154
|
+
- Disco
|
|
155
|
+
- Ditto
|
|
156
|
+
- Divya
|
|
157
|
+
- Dixie
|
|
158
|
+
- Dobie
|
|
159
|
+
- Dodger
|
|
160
|
+
- Dolce Vita
|
|
161
|
+
- Dominique
|
|
162
|
+
- Domino
|
|
163
|
+
- Donburi
|
|
164
|
+
- Donna-Maria
|
|
165
|
+
- Donny
|
|
166
|
+
- Donut
|
|
167
|
+
- Doreen
|
|
168
|
+
- Doris
|
|
169
|
+
- Dorset
|
|
170
|
+
- Drake
|
|
171
|
+
- Drama
|
|
172
|
+
- Drew
|
|
173
|
+
- Dubaku
|
|
174
|
+
- Duchess
|
|
175
|
+
- Duck
|
|
176
|
+
- Duffy
|
|
177
|
+
- Duke
|
|
178
|
+
- Dulcinea
|
|
179
|
+
- Dumpling
|
|
180
|
+
- Duncan
|
|
181
|
+
- Dupont
|
|
182
|
+
- Durian
|
|
183
|
+
- Dusty
|
|
184
|
+
- Dutch
|
|
185
|
+
- Dvorak
|
|
186
|
+
popular_name:
|
|
187
|
+
- Pongo
|
|
188
|
+
- Perdita
|
|
189
|
+
- Cadpig
|
|
190
|
+
- Patch
|
|
191
|
+
- Penny
|
|
192
|
+
- Pepper
|
|
193
|
+
- Freckles
|
|
194
|
+
- Rolly
|
|
195
|
+
- Dipstick
|
|
196
|
+
- Wizzer
|
|
197
|
+
- Jewel
|
|
198
|
+
- Fidget
|
|
199
|
+
- Two-Tone
|
|
200
|
+
- Lucky
|
|
201
|
+
- Tripod
|
|
202
|
+
- Rebecca
|
|
203
|
+
- Doug
|
|
204
|
+
- Delilah
|
|
205
|
+
- Dolly
|
|
206
|
+
- Dylan
|
|
207
|
+
- Da Vinci
|
|
208
|
+
- Dallas
|
|
209
|
+
- Dante
|
|
210
|
+
- Dawkins
|
|
211
|
+
- Dee Dee
|
|
212
|
+
- Deepak
|
|
213
|
+
- Déjà Vu
|
|
214
|
+
- Delgado
|
|
215
|
+
- Destiny
|
|
216
|
+
- Diesel
|
|
217
|
+
- Dimitri 1
|
|
218
|
+
- Dimitri 2
|
|
219
|
+
- Dimitri 3
|
|
220
|
+
- Dizzy
|
|
221
|
+
- DJ
|
|
222
|
+
- Dorothy
|
|
223
|
+
name:
|
|
224
|
+
- Pongo
|
|
225
|
+
- Perdita
|
|
226
|
+
- Cadpig
|
|
227
|
+
- Patch
|
|
228
|
+
- Penny
|
|
229
|
+
- Pepper
|
|
230
|
+
- Freckles
|
|
231
|
+
- Rolly
|
|
232
|
+
- Dipstick
|
|
233
|
+
- Wizzer
|
|
234
|
+
- Jewel
|
|
235
|
+
- Fidget
|
|
236
|
+
- Two-Tone
|
|
237
|
+
- Blob
|
|
238
|
+
- Blot
|
|
239
|
+
- Dot
|
|
240
|
+
- Jolly
|
|
241
|
+
- Latch
|
|
242
|
+
- Lenny
|
|
243
|
+
- Salter
|
|
244
|
+
- Blackie
|
|
245
|
+
- Whitie
|
|
246
|
+
- Lucky
|
|
247
|
+
- Gay
|
|
248
|
+
- Duke
|
|
249
|
+
- Furball
|
|
250
|
+
- Hammer
|
|
251
|
+
- Hoover
|
|
252
|
+
- Pickle
|
|
253
|
+
- Playdoh
|
|
254
|
+
- Pooh
|
|
255
|
+
- Rover
|
|
256
|
+
- Sa-Sa
|
|
257
|
+
- Smokey
|
|
258
|
+
- Spotty
|
|
259
|
+
- Tripod
|
|
260
|
+
- Bravo
|
|
261
|
+
- Bulgey
|
|
262
|
+
- Bump
|
|
263
|
+
- Corky
|
|
264
|
+
- Dipper
|
|
265
|
+
- Disco
|
|
266
|
+
- Flapper
|
|
267
|
+
- Ham
|
|
268
|
+
- Harvey
|
|
269
|
+
- Hoofer
|
|
270
|
+
- Hungry
|
|
271
|
+
- Inky
|
|
272
|
+
- Missy
|
|
273
|
+
- Nosey
|
|
274
|
+
- Pokey
|
|
275
|
+
- Puddles
|
|
276
|
+
- Scooter
|
|
277
|
+
- Sleepy
|
|
278
|
+
- Smokey
|
|
279
|
+
- Sniff
|
|
280
|
+
- Spanky
|
|
281
|
+
- Spark
|
|
282
|
+
- Spatter
|
|
283
|
+
- Speedy
|
|
284
|
+
- Sport
|
|
285
|
+
- Swifty
|
|
286
|
+
- Tiger
|
|
287
|
+
- Tiresome
|
|
288
|
+
- Wags
|
|
289
|
+
- Yank
|
|
290
|
+
- Yoyo
|
|
291
|
+
- Dottie # 102 Dalmatians gives us Domino's mate and three named pups..
|
|
292
|
+
- Little Dipper
|
|
293
|
+
- Oddball # ..but we can't do Domino here, because Doug and Delilah had one too.
|
|
294
|
+
- Doug
|
|
295
|
+
- Delilah
|
|
296
|
+
- Dolly
|
|
297
|
+
- Dylan
|
|
298
|
+
- Da Vinci
|
|
299
|
+
- Dallas
|
|
300
|
+
- Dante
|
|
301
|
+
- Dawkins
|
|
302
|
+
- Dee Dee
|
|
303
|
+
- Deepak
|
|
304
|
+
- Déjà Vu
|
|
305
|
+
- Delgado
|
|
306
|
+
- Destiny
|
|
307
|
+
- Diesel
|
|
308
|
+
- Dimitri 1
|
|
309
|
+
- Dimitri 2
|
|
310
|
+
- Dimitri 3
|
|
311
|
+
- Dizzy
|
|
312
|
+
- DJ
|
|
313
|
+
- Dorothy
|
|
314
|
+
- Dafydd
|
|
315
|
+
- Dai-ichi
|
|
316
|
+
- Dakota
|
|
317
|
+
- Daley
|
|
318
|
+
- Dalmar
|
|
319
|
+
- Dalston
|
|
320
|
+
- Damian
|
|
321
|
+
- Dandy
|
|
322
|
+
- Dane
|
|
323
|
+
- Dani
|
|
324
|
+
- Daoud
|
|
325
|
+
- Daphne
|
|
326
|
+
- Dapple
|
|
327
|
+
- Dara
|
|
328
|
+
- Darby
|
|
329
|
+
- Darcy
|
|
330
|
+
- Darien
|
|
331
|
+
- Darius
|
|
332
|
+
- Dax
|
|
333
|
+
- Dean
|
|
334
|
+
- Debbie-Lee
|
|
335
|
+
- Debbie-Lou
|
|
336
|
+
- Debbie-May
|
|
337
|
+
- December
|
|
338
|
+
- Dechang
|
|
339
|
+
- Declan
|
|
340
|
+
- Delphie
|
|
341
|
+
- Delta
|
|
342
|
+
- Deneesha
|
|
343
|
+
- Denim
|
|
344
|
+
- Denver
|
|
345
|
+
- Denzel
|
|
346
|
+
- Derek
|
|
347
|
+
- Desiree
|
|
348
|
+
- Desmond
|
|
349
|
+
- Deuce
|
|
350
|
+
- Devon
|
|
351
|
+
- Diamond
|
|
352
|
+
- Diana
|
|
353
|
+
- Dibs
|
|
354
|
+
- Diego
|
|
355
|
+
- Dieter
|
|
356
|
+
- Dijon
|
|
357
|
+
- Dilma
|
|
358
|
+
- Dimple
|
|
359
|
+
- Dinga
|
|
360
|
+
- Dingo
|
|
361
|
+
- Dinlo
|
|
362
|
+
- Dionne
|
|
363
|
+
- Disco
|
|
364
|
+
- Ditto
|
|
365
|
+
- Divya
|
|
366
|
+
- Dixie
|
|
367
|
+
- Dobie
|
|
368
|
+
- Dodger
|
|
369
|
+
- Dolce Vita
|
|
370
|
+
- Dominique
|
|
371
|
+
- Domino
|
|
372
|
+
- Donburi
|
|
373
|
+
- Donna-Maria
|
|
374
|
+
- Donny
|
|
375
|
+
- Donut
|
|
376
|
+
- Doreen
|
|
377
|
+
- Doris
|
|
378
|
+
- Dorset
|
|
379
|
+
- Drake
|
|
380
|
+
- Drama
|
|
381
|
+
- Drew
|
|
382
|
+
- Dubaku
|
|
383
|
+
- Duchess
|
|
384
|
+
- Duck
|
|
385
|
+
- Duffy
|
|
386
|
+
- Duke
|
|
387
|
+
- Dulcinea
|
|
388
|
+
- Dumpling
|
|
389
|
+
- Duncan
|
|
390
|
+
- Dupont
|
|
391
|
+
- Durian
|
|
392
|
+
- Dusty
|
|
393
|
+
- Dutch
|
|
394
|
+
- Dvorak
|
|
395
|
+
series_episode:
|
|
396
|
+
- Home is Where the Bark Is
|
|
397
|
+
- Full Metal Pullet
|
|
398
|
+
- Dough the Right Thing
|
|
399
|
+
- He Followed Me Home
|
|
400
|
+
- Love Em and Flea Em
|
|
401
|
+
- Howl Noon
|
|
402
|
+
- Easy on the Lies
|
|
403
|
+
- Two for the Show
|
|
404
|
+
- An Officer and a Gentledog
|
|
405
|
+
- Bad to the Bone
|
|
406
|
+
- Southern Fried Cruella
|
|
407
|
+
- Swine Song
|
|
408
|
+
- Watch for Falling Idols
|
|
409
|
+
- The High Price of Fame
|
|
410
|
+
- The Great Cat Invasion
|
|
411
|
+
- No Train, No Gain
|
|
412
|
+
- Rolly's Egg-Celent Adventure
|
|
413
|
+
- Wild Chick Chase
|
|
414
|
+
- The Dogs of DeVil
|
|
415
|
+
- Dog's Best Friend
|
|
416
|
+
- A Christmas Cruella
|
|
417
|
+
- Out to Launch
|
|
418
|
+
- Prophet and Loss
|
|
419
|
+
- You Slipped a Disk
|
|
420
|
+
- Chow About That?
|
|
421
|
+
- Tic-Track-Toe
|
|
422
|
+
- Lucky All-Star
|
|
423
|
+
- Market Mayhem
|
|
424
|
+
- Lucky to Be Alone
|
|
425
|
+
- Leisure Lawsuit
|
|
426
|
+
- Purred It Through the Grapevine
|
|
427
|
+
- Our Own Digs
|
|
428
|
+
- Goose Pimples
|
|
429
|
+
- Double Dog Dare
|
|
430
|
+
- Mooove It On Over
|
|
431
|
+
- You Say It's Your Birthday
|
|
432
|
+
- Frisky Business
|
|
433
|
+
- Cadet of the Month
|
|
434
|
+
- Four Stories Up
|
|
435
|
+
- Shake, Rattle, and Woof
|
|
436
|
+
- Cadpig Behind Bars
|
|
437
|
+
- Treasure of Swamp Island
|
|
438
|
+
- Lord of the Termites
|
|
439
|
+
- Shipwrecked
|
|
440
|
+
- It's a Swamp Thing
|
|
441
|
+
- Roll Out the Pork Barrel
|
|
442
|
+
- Citizen Canine
|
|
443
|
+
- Fountain of Youth
|
|
444
|
+
- Walk a Mile in My Tracks
|
|
445
|
+
- Smoke Detectors
|
|
446
|
+
- Lobster Tale
|
|
447
|
+
- Spots and Shots
|
|
448
|
+
- On the Lamb
|
|
449
|
+
- Valentine Daze
|
|
450
|
+
- Snow Bounders
|
|
451
|
+
- Gnaw or Never
|
|
452
|
+
- Mall Pups
|
|
453
|
+
- Shrewzle Watch
|
|
454
|
+
- The Life You Save
|
|
455
|
+
- Oozy Does It
|
|
456
|
+
- Barnboozled
|
|
457
|
+
- The Maltese Chicken
|
|
458
|
+
- The Fungus Among Us
|
|
459
|
+
- Close but No Cigar
|
|
460
|
+
- Invasion of the Doggy Snatchers
|
|
461
|
+
- Poison Ivy
|
|
462
|
+
- Twelve Angry Pups
|
|
463
|
+
- Cruella World
|
|
464
|
+
- Film Fatale
|
|
465
|
+
- My Fair Chicken
|
|
466
|
+
- Virtual Lucky
|
|
467
|
+
- Hail to the Chief
|
|
468
|
+
- Food for Thought
|
|
469
|
+
- Alive n' Chicken
|
|
470
|
+
- Prima Doggy
|
|
471
|
+
- The Two Faces of Anita
|
|
472
|
+
- The Artist Formerly Known as Spot
|
|
473
|
+
- The Nose Knows
|
|
474
|
+
- The Good-Bye Chick
|
|
475
|
+
- K is for Kibble
|
|
476
|
+
- Robo-Rolly
|
|
477
|
+
- Splishing and Splashing
|
|
478
|
+
- Cupid Pups
|
|
479
|
+
- Every Little Crooked Nanny
|
|
480
|
+
- Cone Head
|
|
481
|
+
- The Making Of…
|
|
482
|
+
- Humanitarian of the Year
|
|
483
|
+
- Coup DeVil
|
|
484
|
+
- Beauty Pageant Pandemonium
|
|
485
|
+
- Hog-Tied
|
|
486
|
+
- Channels
|
|
487
|
+
- Un-Lucky
|
|
488
|
+
- DeVil-Age Elder
|
|
489
|
+
- Best of Show
|
|
490
|
+
- Walk on the Wild Side
|
|
491
|
+
- Jurassic Bark
|
|
492
|
+
- My Fair Moochie
|
|
493
|
+
- Horace and Jasper's Big Career Move
|
|
494
|
+
- Dog Food Day Afternoon
|
|
495
|
+
- Spot's Fairy God-Chicken
|
|
496
|
+
- Good Neighbor Cruella
|
|
497
|
+
- Animal House Party
|
|
498
|
+
- Dalmatian Vacation Part 1 - Road Warriors
|
|
499
|
+
- Dalmatian Vacation Part 2 - Cross-Country Calamity
|
|
500
|
+
- Dalmatian Vacation Part 3 - Dearly Beloved
|
|
501
|
+
street_episode:
|
|
502
|
+
- A Dog's Best Friend
|
|
503
|
+
- Boom Night
|
|
504
|
+
- Power to the Puppies
|
|
505
|
+
- Who the Dog Do You Think You Are?
|
|
506
|
+
- Walkies on the Wild Side
|
|
507
|
+
- May Contain Nuts
|
|
508
|
+
- Winter Funderland
|
|
509
|
+
- Snow Day
|
|
510
|
+
- Perfect Match
|
|
511
|
+
- All Fired Up
|
|
512
|
+
- Poetry Scam
|
|
513
|
+
- Crushed Out
|
|
514
|
+
- Girls' Day Out
|
|
515
|
+
- The Woof Factor
|
|
516
|
+
- The Nose Job
|
|
517
|
+
- My Fair Dolly
|
|
518
|
+
- Flea-Mageddon
|
|
519
|
+
- A Right Royal Rumble
|
|
520
|
+
- Dal-Martians
|
|
521
|
+
- A Date with Destiny… Dallas and Déjà Vu
|
|
522
|
+
- The Wow of Miaow
|
|
523
|
+
- Fear Window
|
|
524
|
+
- The Dog House
|
|
525
|
+
- A Summer to Remember
|
|
526
|
+
- Long Tongue Day
|
|
527
|
+
- Doggy Da Vinci
|
|
528
|
+
- London, We Have a Problem
|
|
529
|
+
- It's My Party
|
|
530
|
+
- Fox in the Dog House
|
|
531
|
+
- Fetch
|
|
532
|
+
- Don't Push Your Luck
|
|
533
|
+
- The Curse of the Ferrydog
|
|
534
|
+
- The Walls are Alive
|
|
535
|
+
- Diamond Dogs
|
|
536
|
+
- Ride Along
|
|
537
|
+
- Poodlewolf!
|
|
538
|
+
- The Longest Night
|
|
539
|
+
- Balancing Act
|
|
540
|
+
- Dawkins Strikes Back
|
|
541
|
+
- Poodlefall!
|
|
542
|
+
- Dotty Dancing
|
|
543
|
+
- Yappily Ever After
|
|
544
|
+
- D-Factor
|
|
545
|
+
- Puppy Dreams
|
|
546
|
+
- Dante's Inferno
|
|
547
|
+
- Better the De Vil You Know
|
|
548
|
+
- The De Vil Wears Puppies
|
metadata
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: faker-dal
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Anna Wilcox (Spots)
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: faker
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '3.0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '3.0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: i18n
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '1.14'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.14'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: rspec
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 3.13.2
|
|
47
|
+
type: :development
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: 3.13.2
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: rubocop
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: 1.56.4
|
|
61
|
+
type: :development
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 1.56.4
|
|
68
|
+
description: Life is more fun with spots.
|
|
69
|
+
executables: []
|
|
70
|
+
extensions: []
|
|
71
|
+
extra_rdoc_files: []
|
|
72
|
+
files:
|
|
73
|
+
- CONTRIBUTING.rst
|
|
74
|
+
- LICENSE
|
|
75
|
+
- README.rst
|
|
76
|
+
- lib/faker/creature/dog/dalmatian.rb
|
|
77
|
+
- lib/faker/creature/dog/locales/en.yml
|
|
78
|
+
homepage: https://coding.dalmatian.life/faker-dal
|
|
79
|
+
licenses:
|
|
80
|
+
- NCSA
|
|
81
|
+
metadata:
|
|
82
|
+
bug_tracker_uri: https://codeberg.org/Spots/faker-dal/issues
|
|
83
|
+
source_code_uri: https://codeberg.org/Spots/faker-dal
|
|
84
|
+
rdoc_options: []
|
|
85
|
+
require_paths:
|
|
86
|
+
- lib
|
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
88
|
+
requirements:
|
|
89
|
+
- - ">="
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
version: '3.0'
|
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
requirements: []
|
|
98
|
+
rubygems_version: 4.0.9
|
|
99
|
+
specification_version: 4
|
|
100
|
+
summary: Faker extension for spotted dogs
|
|
101
|
+
test_files: []
|