class Faker::BossaNova

Public Class Methods

artist() click to toggle source

Produces the name of a bossa nova artist.

@return [String]

@example

Faker::BossaNova.artist #=> "Tom Jobin"

@faker.version 1.8.3

# File lib/faker/default/bossa_nova.rb, line 15
def artist
  fetch('bossa_nova.artists')
end
song() click to toggle source

Produces a bossa nova song.

@return [String]

@example

Faker::BossaNova.song #=> "Chega de Saudade"

@faker.version 1.8.3

# File lib/faker/default/bossa_nova.rb, line 28
def song
  fetch('bossa_nova.songs')
end