Sha256: e2fa6aae24034b24ebb94110c5d465d5284d07af9a3ec86a2f8afe2afe82e3a4
Contents?: true
Size: 784 Bytes
Versions: 37
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true require_relative 'music' module Faker class Music class GratefulDead < Base class << self ## # Produces the name of a member of The Grateful Dead. # # @return [String] # # @example # Faker::Music::GratefulDead.player #=> "Jerry Garcia" # # @faker.version 1.9.2 def player fetch('grateful_dead.players') end ## # Produces the name of a song by The Grateful Dead. # # @return [String] # # @example # Faker::Music::GratefulDead.song #=> "Cassidy" # # @faker.version 1.9.2 def song fetch('grateful_dead.songs') end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems