Commit b555ad1d authored by Paul Asmuth's avatar Paul Asmuth
Browse files

fixed a ruby 1.8.7 incompatibility, version bump to 0.7.4

parent cb7028df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ class FnordMetric::InboundDatagram < EventMachine::Connection

  def self.start(opts)
    self.opts = opts
    EM.open_datagram_socket(*opts[:inbound_stream], self, opts)
    EM.open_datagram_socket(*(opts[:inbound_stream] << self << opts))
  end

  def receive_data(event)
+1 −1
Original line number Diff line number Diff line
module FnordMetric
  VERSION = "0.7.3"
  VERSION = "0.7.4"
end