win32-sapi 0.1.2-mswin32 → 0.1.3-mswin32

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/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.1.3 - 9-Nov-2005
2
+ * Fixed SpInProcRecognizer class name.
3
+
1
4
  == 0.1.2 - 17-Jun-2005
2
5
  * Added a gemspec.
3
6
  * Some minor updates to the README and test file.
data/MANIFEST CHANGED
@@ -2,6 +2,7 @@ CHANGES
2
2
  README
3
3
  MANIFEST
4
4
  install.rb
5
+ win32-sapi.gemspec
5
6
 
6
7
  doc/sapi5.txt
7
8
 
@@ -2,7 +2,7 @@ require "win32ole"
2
2
 
3
3
  module Win32
4
4
  class SAPI5 < WIN32OLE
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.3"
6
6
  end
7
7
 
8
8
  class SpAudioFormat < SAPI5
@@ -29,7 +29,7 @@ module Win32
29
29
  end
30
30
  end
31
31
 
32
- class SpInprocRecognizer < SAPI5
32
+ class SpInProcRecognizer < SAPI5
33
33
  def initialize
34
34
  super("{41B89B6B-9399-11D2-9623-00C04F8EE628}")
35
35
  end
@@ -25,7 +25,7 @@ class TC_Win32_SAPI5 < Test::Unit::TestCase
25
25
  end
26
26
 
27
27
  def test_version
28
- assert_equal("0.1.2", SAPI5::VERSION)
28
+ assert_equal("0.1.3", SAPI5::VERSION)
29
29
  end
30
30
 
31
31
  def test_SpAudioFormat
@@ -44,8 +44,8 @@ class TC_Win32_SAPI5 < Test::Unit::TestCase
44
44
  assert_nothing_raised{ SpInProcRecoContext.new }
45
45
  end
46
46
 
47
- def test_SpInprocRecognizer
48
- assert_nothing_raised{ SpInprocRecognizer.new }
47
+ def test_SpInProcRecognizer
48
+ assert_nothing_raised{ SpInProcRecognizer.new }
49
49
  end
50
50
 
51
51
  def test_SpLexicon
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.10
2
+ rubygems_version: 0.8.6
3
3
  specification_version: 1
4
4
  name: win32-sapi
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.2
7
- date: 2005-06-17
6
+ version: 0.1.3
7
+ date: 2005-11-09
8
8
  summary: An interface to the MS SAPI (Sound API) library.
9
9
  require_paths:
10
10
  - lib