pedrozath/coltrane

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

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
module Coltrane
  module Commands
    class AvailableRepresentations < Command
      def run
        ['Text'] + Representation.constants.map(&:to_s)
      end
    end
  end
end