ffi-hunspell 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ ### 0.2.5 / 2012-05-11
2
+
3
+ * Load `libhunspell-1.2.so.0` if `libhunspell-1.2.so` cannot be found.
4
+ * Load `libhunspell-1.3.so.0` if `libhunspell-1.3.so` cannot be found.
5
+
1
6
  ### 0.2.4 / 2012-04-27
2
7
 
3
8
  * Require ffi ~> 1.0.
@@ -1,5 +1,5 @@
1
1
  name: ffi-hunspell
2
- version: 0.2.4
2
+ version: 0.2.5
3
3
  summary: FFI bindings for Hunspell
4
4
  description: Ruby FFI bindings for Hunspell spell checker.
5
5
  license: MIT
@@ -5,7 +5,8 @@ module FFI
5
5
  module Hunspell
6
6
  extend FFI::Library
7
7
 
8
- ffi_lib ['hunspell-1.2', 'hunspell-1.3']
8
+ ffi_lib ['hunspell-1.2', 'libhunspell-1.2.so.0',
9
+ 'hunspell-1.3', 'libhunspell-1.3.so.0']
9
10
 
10
11
  attach_function :Hunspell_create, [:string, :string], :pointer
11
12
  attach_function :Hunspell_create_key, [:string, :string, :string], :pointer
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi-hunspell
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-04-28 00:00:00.000000000 Z
12
+ date: 2012-05-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ffi
@@ -138,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
138
  requirements:
139
139
  - libhunspell >= 1.2.0
140
140
  rubyforge_project:
141
- rubygems_version: 1.8.23
141
+ rubygems_version: 1.8.24
142
142
  signing_key:
143
143
  specification_version: 3
144
144
  summary: FFI bindings for Hunspell