Class: Faker::Music::Phish

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

.albumString

Produces the name of a album by Phish.

Examples:

Faker::Music::Phish.album #=> "Fuego"

Returns:

  • (String)

Available since:

  • 2.13.0



16
17
18
# File 'lib/faker/music/phish.rb', line 16

def album
  fetch('phish.albums')
end

.musicianString

Produces the name of a musician in Phish.

Examples:

Faker::Music::Phish.musician #=> "Trey Anastasio"

Returns:

  • (String)

Available since:

  • 2.13.0



29
30
31
# File 'lib/faker/music/phish.rb', line 29

def musician
  fetch('phish.musicians')
end

.songString

Produces the name of a song by Phish.

Examples:

Faker::Music::Phish.song #=> "Tweezer"

Returns:

  • (String)

Available since:

  • 1.9.2



42
43
44
# File 'lib/faker/music/phish.rb', line 42

def song
  fetch('phish.songs')
end