tokenizers 0.1.1 → 0.1.2

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: 6aeb772fccbd1a8ae0991f31b47bbb51fc74b97c51ea085bafa4951797f3e994
4
- data.tar.gz: 342e05d37471d31f6738fef1a50e5f50d521fc10173723d79156bb689cbfdbe9
3
+ metadata.gz: 5fab038a75f7179094ecf6e2e789329d6d452f26538c2c3094de4de38bfd4985
4
+ data.tar.gz: 509c2b888e8cdd50d4a60f3cf6b95c047e553d9619064a20fcec4c88cff21323
5
5
  SHA512:
6
- metadata.gz: 38ac5e532c3b17130c30dd010bc109689036f8a363790bfb39a858f126154c04c81325732bbd0c4ad4aca808c8e48b6c0c1b5f2ce5b043f42c92c5409b7b0c6e
7
- data.tar.gz: 8164092df944f67ddfb1c85c61dadd62a0bf731332f9c1fa64d8ee7daf58710688116dddf3caf2fedd60fedd1b5b76cfd632c83a880e4e19b1e2061174baea3f
6
+ metadata.gz: 909ee87dcab626caebad0f8534e503f60da36e925a1233ed9080cba33a68a4532fde7c9ec97d218d95bc52019cc0ea610ec4134e948fc3d7e7409a2a964b77c5
7
+ data.tar.gz: 0b42ad63efff9b937846145d85542a9ef14d18b94e628921946591ca792d572f123af07284baf2d5a5462b6c14f049a97cfeaa7aea536fed36756a1878cc562c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.1.2 (2022-09-08)
2
+
3
+ - Fixed error with installation on Linux
4
+
1
5
  ## 0.1.1 (2022-06-29)
2
6
 
3
7
  - Fixed error with installation
data/README.md CHANGED
@@ -61,7 +61,7 @@ To get started with development:
61
61
  git clone https://github.com/ankane/tokenizers-ruby.git
62
62
  cd tokenizers-ruby
63
63
  bundle install
64
- bundle exec ruby ext/tokenizers/extconf.rb && make
64
+ bundle exec ruby ext/tokenizers/extconf.rb && make && make install
65
65
  bundle exec rake download:files
66
66
  bundle exec rake test
67
67
  ```
@@ -3,8 +3,9 @@ require "pathname"
3
3
  dest = Pathname.new(__dir__).relative_path_from(Pathname.pwd).join("../../lib/tokenizers/ext.#{RbConfig::CONFIG["DLEXT"]}")
4
4
 
5
5
  File.write "Makefile", <<~EOS
6
- install:
6
+ all:
7
7
  \tcargo build --release --target-dir target
8
+ install:
8
9
  \tmv target/release/libtokenizers.#{RbConfig::CONFIG["SOEXT"]} #{dest}
9
10
  clean:
10
11
  EOS
@@ -1,3 +1,3 @@
1
1
  module Tokenizers
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tokenizers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-29 00:00:00.000000000 Z
11
+ date: 2022-09-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: andrew@ankane.org