class Faker::Music::Opera

def beethoven

Returns:
  • (String) -
def beethoven
  fetch('opera.german.by_ludwig_van_beethoven')
end

def bellini

Returns:
  • (String) -
def bellini
  fetch('opera.italian.by_vincenzo_bellini')
end

def berg

Returns:
  • (String) -
def berg
  fetch('opera.german.by_alban_berg')
end

def berlioz

Returns:
  • (String) -
def berlioz
  fetch('opera.french.by_hector_berlioz')
end

def bizet

Returns:
  • (String) -
def bizet
  fetch('opera.french.by_georges_bizet')
end

def donizetti

Returns:
  • (String) -
def donizetti
  fetch('opera.italian.by_gaetano_donizetti')
end

def gluck

Returns:
  • (String) -
def gluck
  fetch('opera.italian.by_christoph_willibald_gluck') +
    fetch('opera.french.by_christoph_willibald_gluck')
end

def gluck_french

Returns:
  • (String) -
def gluck_french
  fetch('opera.french.by_christoph_willibald_gluck')
end

def gluck_italian

Returns:
  • (String) -
def gluck_italian
  fetch('opera.italian.by_christoph_willibald_gluck')
end

def gounod

Returns:
  • (String) -
def gounod
  fetch('opera.french.by_charles_gounod')
end

def mozart

Returns:
  • (String) -
def mozart
  fetch('opera.italian.by_wolfgang_amadeus_mozart') +
    fetch('opera.german.by_wolfgang_amadeus_mozart')
end

def mozart_german

Returns:
  • (String) -
def mozart_german
  fetch('opera.german.by_wolfgang_amadeus_mozart')
end

def mozart_italian

Returns:
  • (String) -
def mozart_italian
  fetch('opera.italian.by_wolfgang_amadeus_mozart')
end

def ravel

Returns:
  • (String) -
def ravel
  fetch('opera.french.by_maurice_ravel')
end

def rossini

Returns:
  • (String) -
def rossini
  fetch('opera.italian.by_gioacchino_rossini')
end

def saint_saens

Returns:
  • (String) -
def saint_saens
  fetch('opera.french.by_camille_saint_saens')
end

def schubert

Returns:
  • (String) -
def schubert
  fetch('opera.german.by_franz_schubert')
end

def schumann

Returns:
  • (String) -
def schumann
  fetch('opera.german.by_robert_schumann')
end

def strauss

Returns:
  • (String) -
def strauss
  fetch('opera.german.by_richard_strauss')
end

def verdi

Returns:
  • (String) -
def verdi
  fetch('opera.italian.by_giuseppe_verdi')
end

def wagner

Returns:
  • (String) -
def wagner
  fetch('opera.german.by_richard_wagner')
end

def weber

Returns:
  • (String) -
def weber
  fetch('opera.german.by_carl_maria_von_weber')
end