Module: Muse::Config

Defined in:
lib/muse/config/chords.rb

Class Method Summary collapse

Class Method Details

._BbM(options = {}) ⇒ Object



40
41
42
# File 'lib/muse/config/chords.rb', line 40

def _BbM(options={})
  add_to_stream chord(%w(ais2 d3 f3), options)
end

._C7(options = {}) ⇒ Object

dominant 7th



36
37
38
# File 'lib/muse/config/chords.rb', line 36

def _C7(options={})
  add_to_stream chord(%w(c2 e2 g2 ais2), options)
end

._CM(options = {}) ⇒ Object

major



22
23
24
# File 'lib/muse/config/chords.rb', line 22

def _CM(options={})
  add_to_stream chord(%w(c2 e2 g2), options)
end

._Dm(options = {}) ⇒ Object

minor



31
32
33
# File 'lib/muse/config/chords.rb', line 31

def _Dm(options={})
  add_to_stream chord(%w(d2 f2 a2), options)
end

._FM(options = {}) ⇒ Object



26
27
28
# File 'lib/muse/config/chords.rb', line 26

def _FM(options={})
  add_to_stream chord(%w(f2 a2 c3), options)
end