mattbrictson/tomo

View on GitHub
lib/tomo/commands/help.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Tomo
  module Commands
    class Help
      def self.parse(argv)
        Default.parse([*argv, "--help"])
      end
    end
  end
end