pedrozath/coltrane

View on GitHub
lib/coltrane/commands/find_chord_by_notes.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
module Coltrane
  module Commands
    class FindChordByNotes < Command
      def run(notes)
        Theory::Chord.new(notes: notes)
      end
    end
  end
end