rafaelgonzalez/loco_bot

View on GitHub
lib/loco_bot/cli/command/hodor.rb

Summary

Maintainability
A
0 mins
Test Coverage
module LocoBot
  class CLI
    module Command
      # Upon execution, outputs a string to STDOUT.
      class Hodor < Base
        # Executes the command.
        # @return [void]
        def execute
          robot.hodor!
        end
      end
    end
  end
end