chrismccord/sync

View on GitHub
lib/render_sync/clients/dummy.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RenderSync
  module Clients
    class Dummy
      def method_missing(*args, &block)
        nil
      end

      class Message
        def self.method_missing(*args, &block)
          nil
        end

        def initialize(*)
        end

        def method_missing(*args, &block)
          nil
        end
      end
    end
  end
end