Class: Faker::Music::GratefulDead

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/music/grateful_dead.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

.playerString

Produces the name of a member of The Grateful Dead.

Examples:

Faker::Music::GratefulDead.player #=> "Jerry Garcia"

Returns:

  • (String)

Available since:

  • 1.9.2



18
19
20
# File 'lib/faker/music/grateful_dead.rb', line 18

def player
  fetch('grateful_dead.players')
end

.songString

Produces the name of a song by The Grateful Dead.

Examples:

Faker::Music::GratefulDead.song #=> "Cassidy"

Returns:

  • (String)

Available since:

  • 1.9.2



31
32
33
# File 'lib/faker/music/grateful_dead.rb', line 31

def song
  fetch('grateful_dead.songs')
end