Class: Faker::Music::Opera
Constant Summary
Constants inherited from Base
Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters
Class Method Summary collapse
-
.beethoven ⇒ String
Produces the title of an opera by Ludwig van Beethoven.
-
.bellini ⇒ String
Produces the title of an opera by Vincenzo Bellini.
-
.berg ⇒ String
Produces the title of an opera by Alban Berg.
-
.berlioz ⇒ String
Produces the title of an opera by Hector Berlioz.
-
.bizet ⇒ String
Produces the title of an opera by Georges Bizet.
-
.donizetti ⇒ String
Produces the title of an opera by Gaetano Donizetti.
-
.gluck ⇒ String
Produces the title of an opera by Christoph Willibald Gluck.
-
.gluck_french ⇒ String
Produces the title of a French opera by Christoph Willibald Gluck.
-
.gluck_italian ⇒ String
Produces the title of an Italian opera by Christoph Willibald Gluck.
-
.gounod ⇒ String
Produces the title of an opera by Charles Gounod.
-
.mozart ⇒ String
Produces the title of an opera by Wolfgang Amadeus Mozart.
-
.mozart_german ⇒ String
Produces the title of a German opera by Wolfgang Amadeus Mozart.
-
.mozart_italian ⇒ String
Produces the title of an Italian opera by Wolfgang Amadeus Mozart.
-
.ravel ⇒ String
Produces the title of an opera by Maurice Ravel.
-
.rossini ⇒ String
Produces the title of an opera by Gioacchino Rossini.
-
.saint_saens ⇒ String
Produces the title of an opera by Camille Saint-Saens.
-
.schubert ⇒ String
Produces the title of an opera by Franz Schubert.
-
.schumann ⇒ String
Produces the title of an opera by Robert Schumann.
-
.strauss ⇒ String
Produces the title of an opera by Richard Strauss.
-
.verdi ⇒ String
Produces the title of an opera by Giuseppe Verdi.
-
.wagner ⇒ String
Produces the title of an opera by Richard Wagner.
-
.weber ⇒ String
Produces the title of an opera by Carl Maria von Weber.
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, shuffle!, translate, unique, with_locale
Class Method Details
.beethoven ⇒ String
Produces the title of an opera by Ludwig van Beethoven.
149 150 151 |
# File 'lib/faker/music/opera.rb', line 149 def beethoven fetch('opera.german.by_ludwig_van_beethoven') end |
.bellini ⇒ String
Produces the title of an opera by Vincenzo Bellini.
56 57 58 |
# File 'lib/faker/music/opera.rb', line 56 def bellini fetch('opera.italian.by_vincenzo_bellini') end |
.berg ⇒ String
Produces the title of an opera by Alban Berg.
227 228 229 |
# File 'lib/faker/music/opera.rb', line 227 def berg fetch('opera.german.by_alban_berg') end |
.berlioz ⇒ String
Produces the title of an opera by Hector Berlioz.
253 254 255 |
# File 'lib/faker/music/opera.rb', line 253 def berlioz fetch('opera.french.by_hector_berlioz') end |
.bizet ⇒ String
Produces the title of an opera by Georges Bizet.
266 267 268 |
# File 'lib/faker/music/opera.rb', line 266 def bizet fetch('opera.french.by_georges_bizet') end |
.donizetti ⇒ String
Produces the title of an opera by Gaetano Donizetti.
43 44 45 |
# File 'lib/faker/music/opera.rb', line 43 def donizetti fetch('opera.italian.by_gaetano_donizetti') end |
.gluck ⇒ String
Produces the title of an opera by Christoph Willibald Gluck.
109 110 111 112 |
# File 'lib/faker/music/opera.rb', line 109 def gluck fetch('opera.italian.by_christoph_willibald_gluck') + fetch('opera.french.by_christoph_willibald_gluck') end |
.gluck_french ⇒ String
Produces the title of a French opera by Christoph Willibald Gluck.
136 137 138 |
# File 'lib/faker/music/opera.rb', line 136 def gluck_french fetch('opera.french.by_christoph_willibald_gluck') end |
.gluck_italian ⇒ String
Produces the title of an Italian opera by Christoph Willibald Gluck.
123 124 125 |
# File 'lib/faker/music/opera.rb', line 123 def gluck_italian fetch('opera.italian.by_christoph_willibald_gluck') end |
.gounod ⇒ String
Produces the title of an opera by Charles Gounod.
279 280 281 |
# File 'lib/faker/music/opera.rb', line 279 def gounod fetch('opera.french.by_charles_gounod') end |
.mozart ⇒ String
Produces the title of an opera by Wolfgang Amadeus Mozart.
69 70 71 72 |
# File 'lib/faker/music/opera.rb', line 69 def mozart fetch('opera.italian.by_wolfgang_amadeus_mozart') + fetch('opera.german.by_wolfgang_amadeus_mozart') end |
.mozart_german ⇒ String
Produces the title of a German opera by Wolfgang Amadeus Mozart.
96 97 98 |
# File 'lib/faker/music/opera.rb', line 96 def mozart_german fetch('opera.german.by_wolfgang_amadeus_mozart') end |
.mozart_italian ⇒ String
Produces the title of an Italian opera by Wolfgang Amadeus Mozart.
83 84 85 |
# File 'lib/faker/music/opera.rb', line 83 def mozart_italian fetch('opera.italian.by_wolfgang_amadeus_mozart') end |
.ravel ⇒ String
Produces the title of an opera by Maurice Ravel.
240 241 242 |
# File 'lib/faker/music/opera.rb', line 240 def ravel fetch('opera.french.by_maurice_ravel') end |
.rossini ⇒ String
Produces the title of an opera by Gioacchino Rossini.
30 31 32 |
# File 'lib/faker/music/opera.rb', line 30 def rossini fetch('opera.italian.by_gioacchino_rossini') end |
.saint_saens ⇒ String
Produces the title of an opera by Camille Saint-Saens.
292 293 294 |
# File 'lib/faker/music/opera.rb', line 292 def saint_saens fetch('opera.french.by_camille_saint_saens') end |
.schubert ⇒ String
Produces the title of an opera by Franz Schubert.
214 215 216 |
# File 'lib/faker/music/opera.rb', line 214 def schubert fetch('opera.german.by_franz_schubert') end |
.schumann ⇒ String
Produces the title of an opera by Robert Schumann.
201 202 203 |
# File 'lib/faker/music/opera.rb', line 201 def schumann fetch('opera.german.by_robert_schumann') end |
.strauss ⇒ String
Produces the title of an opera by Richard Strauss.
175 176 177 |
# File 'lib/faker/music/opera.rb', line 175 def strauss fetch('opera.german.by_richard_strauss') end |
.verdi ⇒ String
Produces the title of an opera by Giuseppe Verdi.
17 18 19 |
# File 'lib/faker/music/opera.rb', line 17 def verdi fetch('opera.italian.by_giuseppe_verdi') end |
.wagner ⇒ String
Produces the title of an opera by Richard Wagner.
188 189 190 |
# File 'lib/faker/music/opera.rb', line 188 def wagner fetch('opera.german.by_richard_wagner') end |
.weber ⇒ String
Produces the title of an opera by Carl Maria von Weber.
162 163 164 |
# File 'lib/faker/music/opera.rb', line 162 def weber fetch('opera.german.by_carl_maria_von_weber') end |