lib/coltrane_instruments/guitar.rb in coltrane-2.0.0 vs lib/coltrane_instruments/guitar.rb in coltrane-2.1.0

- old
+ new

@@ -1,7 +1,10 @@ # frozen_string_literal: true module ColtraneInstruments - # This module represents a guitar module Guitar + autoload :Base, 'coltrane_instruments/guitar/base' + autoload :Chord, 'coltrane_instruments/guitar/chord' + autoload :Note, 'coltrane_instruments/guitar/note' + autoload :String, 'coltrane_instruments/guitar/string' end -end +end \ No newline at end of file