Sha256: 51836c0301245e98e4be0142f388ec3418aecf4b22e4b7dc5bd46d08a844cc4f
Contents?: true
Size: 778 Bytes
Versions: 27
Compression:
Stored size: 778 Bytes
Contents
require 'multi_json' module Cucumber module WireSupport # Represents the packet of data sent over the wire as JSON data, containing # a message and a hash of arguments class WirePacket class << self def parse(raw) attributes = MultiJson.load(raw.strip) message = attributes[0] params = attributes[1] new(message, params) end end attr_reader :message, :params def initialize(message, params = nil) @message, @params = message, params end def to_json packet = [@message] packet << @params if @params packet.to_json end def handle_with(handler) handler.send("handle_#{@message}", @params) end end end end
Version data entries
27 entries across 25 versions & 2 rubygems