pedrozath/coltrane

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

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
module Coltrane
  module Commands
    class AvailableChordRepresentations < Command
      def run
        return ['GuitarChordChart'] + AvailableRepresentations.run
      end
    end
  end
end