adhearsion/punchblock

View on GitHub
lib/punchblock/connection/generic_connection.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: utf-8

module Punchblock
  module Connection
    class GenericConnection
      def initialize
        @event_handler = lambda { |event| raise 'No event handler set' }
      end

      def ready!
      end

      def not_ready!
      end

      def connected?
      end
    end
  end
end