class Faker::Music
def album
-
(String)
-
def album fetch('music.albums') end
def band
-
(String)
-
def band fetch('music.bands') end
def chord
-
(String)
-
def chord key + sample(chord_types) end
def chord_types
-
(Array
-)
def chord_types CHORD_TYPES end
def genre
-
(String)
-
def genre fetch('music.genres') end
def instrument
-
(String)
-
def instrument fetch('music.instruments') end
def key
-
(String)
-
def key sample(keys) + sample(key_variants) end
def key_types
-
(Array
-)
def key_types KEY_TYPES end
def key_variants
-
(Array
-)
def key_variants ACCIDENTAL_SIGNS end
def keys
-
(Array
-)
def keys NOTE_LETTERS end
def mambo_no_5
-
(String)
-
def mambo_no_5 fetch('music.mambo_no_5') end