Class: Faker::Creature::Cat

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/creature/cat.rb

Constant Summary

Constants inherited from Base

Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters

Class Method Summary collapse

Methods inherited from Base

bothify, disable_enforce_available_locales, fetch, fetch_all, flexible, generate, letterify, method_missing, numerify, parse, rand, rand_in_range, regexify, resolve, respond_to_missing?, sample, shuffle, translate, unique, with_locale

Class Method Details

.breedString

Produces a random cat breed

Examples:

Faker::Creature::Cat.breed #=> "Scottish Fold"

Returns:

  • (String)

Available since:

  • 1.9.2



31
32
33
# File 'lib/faker/creature/cat.rb', line 31

def breed
  fetch('creature.cat.breed')
end

.nameString

Produces a random name for a cat

Examples:

Faker::Creature::Cat.name #=> "Felix"

Returns:

  • (String)

Available since:

  • 1.9.2



18
19
20
# File 'lib/faker/creature/cat.rb', line 18

def name
  fetch('creature.cat.name')
end

.registryString

Produces a random cat breed registry

Examples:

Faker::Creature::Cat.registry #=> "Fancy Southern Africa Cat Council"

Returns:

  • (String)

Available since:

  • 1.9.2



44
45
46
# File 'lib/faker/creature/cat.rb', line 44

def registry
  fetch('creature.cat.registry')
end