livinginthepast/fake_ftp

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module FakeFtp
  module ServerCommands
    class Site
      def run(_, command, *)
        "200 #{command}"
      end
    end
  end
end