blingfire 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af6d8ad14f2c3f56fb148eca079a81bb48b3cec80790bc184fc99afd03572f12
4
- data.tar.gz: 92f351ac35b186b54b2d2c261427b3827ccb40613d3dd3fc1f57ce6eec83aa57
3
+ metadata.gz: f5cb0c60e84b11286c1137a7b51c7e69f8f728c0b2e316241f2393fc84100d85
4
+ data.tar.gz: 3cb42d40e91f71f79e9c47a7e5f639cf2c1a50529e0b24d5446593d2f595d9d0
5
5
  SHA512:
6
- metadata.gz: 5714bc6333a94669d1b6b69682dd3671933ffc0611107eeb2ce174263c329b42b57c92205afac8519b6626dcae631f724682fccfde57c6514c9cac9233653c62
7
- data.tar.gz: 46a6de8f8a081c893db5d446b6e981a170efc4cdcfdaac158f58ba423592f0274990345066a703a687e67d2f2496cb46b2a46cfe8a0f476f19b30afd37fd4697
6
+ metadata.gz: db26b8e41a671515027f20efc2244e1384144efd88ebe3126bb77aad3abd5b09280f7af314d3ccb2d5a51c4ae56e53f0398e6529654405ebac8e85e4a6c3449e
7
+ data.tar.gz: fd1e5a1cc93dbe5c2b59c2cfbb54b874f57a174f85530a0f5582a1d831b8fb214b02452767a5874505ff0c1b2b1ce7ccf99463a70eb17a43c3730da38a7780ad
@@ -1,3 +1,7 @@
1
+ ## 0.1.4 (2020-12-28)
2
+
3
+ - Added ARM shared library for Mac
4
+
1
5
  ## 0.1.3 (2020-10-01)
2
6
 
3
7
  - Added `text_to_words_with_offsets` method
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Bling Fire](https://github.com/microsoft/BlingFire) - high speed text tokenization - for Ruby
4
4
 
5
- [![Build Status](https://travis-ci.org/ankane/blingfire.svg?branch=master)](https://travis-ci.org/ankane/blingfire) [![Build status](https://ci.appveyor.com/api/projects/status/3gyca4gsjw2w9ns1/branch/master?svg=true)](https://ci.appveyor.com/project/ankane/blingfire/branch/master)
5
+ [![Build Status](https://github.com/ankane/blingfire/workflows/build/badge.svg?branch=master)](https://github.com/ankane/blingfire/actions)
6
6
 
7
7
  ## Installation
8
8
 
@@ -14,6 +14,8 @@ module BlingFire
14
14
  lib_name =
15
15
  if Gem.win_platform?
16
16
  "blingfiretokdll.dll"
17
+ elsif RbConfig::CONFIG["arch"] =~ /arm64-darwin/i
18
+ "libblingfiretokdll.arm64.dylib"
17
19
  elsif RbConfig::CONFIG["host_os"] =~ /darwin/i
18
20
  "libblingfiretokdll.dylib"
19
21
  else
@@ -1,3 +1,3 @@
1
1
  module BlingFire
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blingfire
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-02 00:00:00.000000000 Z
11
+ date: 2020-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '5'
55
- description:
55
+ description:
56
56
  email: andrew@chartkick.com
57
57
  executables: []
58
58
  extensions: []
@@ -67,13 +67,14 @@ files:
67
67
  - lib/blingfire/version.rb
68
68
  - vendor/LICENSE
69
69
  - vendor/blingfiretokdll.dll
70
+ - vendor/libblingfiretokdll.arm64.dylib
70
71
  - vendor/libblingfiretokdll.dylib
71
72
  - vendor/libblingfiretokdll.so
72
73
  homepage: https://github.com/ankane/blingfire
73
74
  licenses:
74
75
  - MIT
75
76
  metadata: {}
76
- post_install_message:
77
+ post_install_message:
77
78
  rdoc_options: []
78
79
  require_paths:
79
80
  - lib
@@ -88,8 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
89
  - !ruby/object:Gem::Version
89
90
  version: '0'
90
91
  requirements: []
91
- rubygems_version: 3.1.2
92
- signing_key:
92
+ rubygems_version: 3.2.3
93
+ signing_key:
93
94
  specification_version: 4
94
95
  summary: High speed text tokenization for Ruby
95
96
  test_files: []