julius 0.0.1 → 0.0.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.
- checksums.yaml +4 -4
- data/lib/julius/message.rb +1 -0
- data/lib/julius/version.rb +1 -1
- data/spec/julius_spec.rb +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84d068ab760ee260ea305b8309ef04339149d50e
|
4
|
+
data.tar.gz: 9599daa8da8efbda1af16de0a00b65952fb8df55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 644f0ebc7dfcc5495b2451a078829eef462372bf2c9d9fcbee79552893067cbda4bf92852f93001364b6aaa58a3a931a69faaeee6280275cf8543ce0b2ef41a4
|
7
|
+
data.tar.gz: 7cd8c56994e1f8f6178ad7b1580af1d8c1f4031ae0926c0583134d2321947abb26fa9c62e57a60be1da12537a13371b1a5dc539b7c4b0c8a74433797225f1b0b
|
data/lib/julius/message.rb
CHANGED
data/lib/julius/version.rb
CHANGED
data/spec/julius_spec.rb
CHANGED
@@ -98,8 +98,7 @@ end
|
|
98
98
|
|
99
99
|
describe Julius do
|
100
100
|
before do
|
101
|
-
|
102
|
-
@socket = IO.popen('-')
|
101
|
+
@socket = Socket.new(Socket::AF_INET, Socket::SOCK_STREAM)
|
103
102
|
@socket.stub!(:readline).and_return('<STARTPROC/>', nil)
|
104
103
|
TCPSocket.should_receive(:new)
|
105
104
|
.with('localhost', 10501)
|