Sha256: f120ca53abcba77257e43dee93264abc05d88acc87c142259293cae81f46308c
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true require_relative 'music' module Faker class Music class PearlJam < Base class << self ## # Produces the name of a member of Pearl Jam (current and former) # # @return [String] # # @example # Faker::Music::PearlJam.musician #=> "Eddie Vedder" # # @faker.version next def musician fetch('pearl_jam.musicians') end ## # Produces the name of an album by Pearl Jam. # # @return [String] # # @example # Faker::Music::PearlJam.album #=> "Ten" # # @faker.version next def album fetch('pearl_jam.albums') end ## # Produces the name of a song by Pearl Jam. # # @return [String] # # @example # Faker::Music::PearlJam.song #=> "Even Flow" # # @faker.version next def song fetch('pearl_jam.songs') end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
faker-2.12.0 | lib/faker/music/pearl_jam.rb |