Module: Cryptozoologist::Dictionaries
- Extended by:
- Dictionaries
- Included in:
- Dictionaries
- Defined in:
- lib/cryptozoologist/dictionaries.rb,
lib/cryptozoologist/dictionaries/filler.rb,
lib/cryptozoologist/dictionaries/states.rb,
lib/cryptozoologist/dictionaries/clothing.rb,
lib/cryptozoologist/dictionaries/quantity.rb,
lib/cryptozoologist/dictionaries/punctuation.rb,
lib/cryptozoologist/dictionaries/colors/paint.rb,
lib/cryptozoologist/dictionaries/animals/common.rb,
lib/cryptozoologist/dictionaries/colors/web_safe.rb,
lib/cryptozoologist/dictionaries/animals/mythical.rb,
lib/cryptozoologist/dictionaries/people/last_name.rb,
lib/cryptozoologist/dictionaries/people/first_name.rb
Defined Under Namespace
Modules: Animals, Clothing, Colors, Filler, People, Punctuation, Quantity, States
Instance Method Summary
collapse
Instance Method Details
#addresses ⇒ Object
50
51
52
|
# File 'lib/cryptozoologist/dictionaries.rb', line 50
def addresses
Addresses.list
end
|
#animals ⇒ Object
5
6
7
|
# File 'lib/cryptozoologist/dictionaries.rb', line 5
def animals
create_list(:animals)
end
|
#cities ⇒ Object
58
59
60
|
# File 'lib/cryptozoologist/dictionaries.rb', line 58
def cities
create_list(:cities)
end
|
#clothing ⇒ Object
9
10
11
|
# File 'lib/cryptozoologist/dictionaries.rb', line 9
def clothing
Clothing.list
end
|
#colors ⇒ Object
13
14
15
|
# File 'lib/cryptozoologist/dictionaries.rb', line 13
def colors
create_list(:colors)
end
|
#filler ⇒ Object
42
43
44
|
# File 'lib/cryptozoologist/dictionaries.rb', line 42
def filler
Filler.list
end
|
#first_name ⇒ Object
62
63
64
|
# File 'lib/cryptozoologist/dictionaries.rb', line 62
def first_name
People::FirstName.list
end
|
#last_name ⇒ Object
66
67
68
|
# File 'lib/cryptozoologist/dictionaries.rb', line 66
def last_name
People::LastName.list
end
|
#punctuation ⇒ Object
46
47
48
|
# File 'lib/cryptozoologist/dictionaries.rb', line 46
def punctuation
Punctuation.list
end
|
#quantity ⇒ Object
17
18
19
|
# File 'lib/cryptozoologist/dictionaries.rb', line 17
def quantity
Quantity.list
end
|
#states ⇒ Object
54
55
56
|
# File 'lib/cryptozoologist/dictionaries.rb', line 54
def states
States.list
end
|