pedrozath/coltrane

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

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
module Coltrane
  module Commands
    class FindProgressionsFromChords < Command
      def run(*chords)
        Theory::Progression.find(*chords)
      end
    end
  end
end