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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8fae0d4d7635d1a147f0e69aebb0f0c8f9b4e9ef
4
- data.tar.gz: 6a005282f6f17ee41813f4c230fffd8f627462b2
3
+ metadata.gz: 84d068ab760ee260ea305b8309ef04339149d50e
4
+ data.tar.gz: 9599daa8da8efbda1af16de0a00b65952fb8df55
5
5
  SHA512:
6
- metadata.gz: 56230ef389f291e92898c7358c29ba69acd6c6392312876eeb69ba4847f7d7892d56ae7173f2cba2062fa727ce9c85abeef44492dd2a66e2bc7e1a428982b0f6
7
- data.tar.gz: 8097961a9c2c4beb45290aecbac0e58bb20f9e63c863925f13891e61169cab3b21ed3bdd1aa4a761285af42ab8fcb14efd75a3e47300eca3cb64f85da5fa2e3d
6
+ metadata.gz: 644f0ebc7dfcc5495b2451a078829eef462372bf2c9d9fcbee79552893067cbda4bf92852f93001364b6aaa58a3a931a69faaeee6280275cf8543ce0b2ef41a4
7
+ data.tar.gz: 7cd8c56994e1f8f6178ad7b1580af1d8c1f4031ae0926c0583134d2321947abb26fa9c62e57a60be1da12537a13371b1a5dc539b7c4b0c8a74433797225f1b0b
@@ -4,6 +4,7 @@ class Julius
4
4
 
5
5
  class Startproc < Message; end
6
6
  class Endproc < Message; end
7
+ class Stopproc < Message; end # TODO マニュアルに存在しない謎要素
7
8
  class Startrecog < Message; end
8
9
  class Endrecog < Message; end
9
10
 
@@ -1,3 +1,3 @@
1
1
  class Julius
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -98,8 +98,7 @@ end
98
98
 
99
99
  describe Julius do
100
100
  before do
101
- allow_message_expectations_on_nil
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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: julius
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hajime WAKAHARA