duse-io/duse.rb

View on GitHub
lib/duse/cli/meta_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Duse
  module CLI
    class MetaCommand < Command
      abstract

      def run(*sub_commands)
        say help
      end
    end
  end
end