livinginthepast/fake_ftp

View on GitHub
lib/fake_ftp/server_commands/quit.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module FakeFtp
  module ServerCommands
    class Quit
      def run(ctx, *)
        ctx.respond_with '221 OMG bye!'
        ctx.client&.close
        ctx.client = nil
      end
    end
  end
end