ffi-icu 0.1.4 → 0.1.5
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/LICENSE +1 -1
- data/README.md +1 -1
- data/lib/ffi-icu/lib.rb +3 -0
- data/lib/ffi-icu/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebf8ce2089aae2e74fc8148750c4cbe15544df07
|
|
4
|
+
data.tar.gz: 94c1ecae04297768e9ec918893810827b359b51a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8cedfa71f9ed5bdb8bc1565fc74e0b35e34ec23042b5580236a307fcea454d3d5e44a5363cc0f7b2ffb549669f84146aa6d58caecf0fb3c640f1b79e35fe0bc
|
|
7
|
+
data.tar.gz: 7bbaa3f1345c3f0390bf6eb0b7588806225e8a9b4ac039771b8ea3dfe87f58eb6fd7ab27211f92b3ad73fedab1a2f9bd47f51867a75547ddca974b9eea002c35
|
data/LICENSE
CHANGED
data/README.md
CHANGED
data/lib/ffi-icu/lib.rb
CHANGED
|
@@ -35,6 +35,9 @@ module ICU
|
|
|
35
35
|
def self.load_icu
|
|
36
36
|
# First find the library
|
|
37
37
|
lib_names = case ICU.platform
|
|
38
|
+
when :bsd
|
|
39
|
+
[find_lib("libicui18n.#{FFI::Platform::LIBSUFFIX}.??"),
|
|
40
|
+
find_lib("libicutu.#{FFI::Platform::LIBSUFFIX}.??")]
|
|
38
41
|
when :osx
|
|
39
42
|
[find_lib("libicucore.#{FFI::Platform::LIBSUFFIX}")]
|
|
40
43
|
when :linux
|
data/lib/ffi-icu/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ffi-icu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jari Bakken
|
|
@@ -140,3 +140,4 @@ test_files:
|
|
|
140
140
|
- spec/spec_helper.rb
|
|
141
141
|
- spec/transliteration_spec.rb
|
|
142
142
|
- spec/uchar_spec.rb
|
|
143
|
+
has_rdoc:
|