rtp 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.rdoc +8 -0
- data/README.rdoc +0 -2
- data/lib/rtp/receiver.rb +1 -1
- data/lib/rtp/version.rb +1 -1
- data/spec/rtp/receiver_spec.rb +2 -2
- metadata +1 -1
data/History.rdoc
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
=== 0.1.2 / 2012-11-20
|
2
|
+
|
3
|
+
==== Bug Fixes:
|
4
|
+
|
5
|
+
* Undid changes from 0.1.1 and removed claims for JRuby and Rubinius support.
|
6
|
+
The changes from 0.1.1 were incomplete for actually supporting those rubies
|
7
|
+
and I don't want to spend the time right now learning how to fix that correctly.
|
8
|
+
|
1
9
|
=== 0.1.1 / 2012-11-20
|
2
10
|
|
3
11
|
==== Bug Fixes:
|
data/README.rdoc
CHANGED
data/lib/rtp/receiver.rb
CHANGED
data/lib/rtp/version.rb
CHANGED
data/spec/rtp/receiver_spec.rb
CHANGED
@@ -293,7 +293,7 @@ describe RTP::Receiver do
|
|
293
293
|
end
|
294
294
|
|
295
295
|
let(:socket) do
|
296
|
-
double "Socket",
|
296
|
+
double "Socket", recvmsg: message
|
297
297
|
end
|
298
298
|
|
299
299
|
it "starts a new Thread and returns that" do
|
@@ -305,7 +305,7 @@ describe RTP::Receiver do
|
|
305
305
|
Thread.stub(:start).and_yield
|
306
306
|
subject.stub(:loop).and_yield
|
307
307
|
|
308
|
-
socket.should_receive(:
|
308
|
+
socket.should_receive(:recvmsg).with(1500).and_return message
|
309
309
|
|
310
310
|
subject.send(:start_listener, socket)
|
311
311
|
|