r7kamura/ruboty

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

Summary

Maintainability
A
0 mins
Test Coverage
module Ruboty
  module Commands
    class Help < Base
      def call
        puts options
        exit
      end
    end
  end
end