fast_woothee 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1fb21b93bf4af62df0d4bda39071e7a0f9c4b53f
4
- data.tar.gz: a1ade53c734982b0d1cb0eda9086479fb6a06409
3
+ metadata.gz: bf1c357981934510ffed449a806db2e4639c9caa
4
+ data.tar.gz: 8f17c9538e74b8668ca19696c62856ec57256bbd
5
5
  SHA512:
6
- metadata.gz: e31cb3aa870a3fc83381e72959101eb5fff51922ba51762c5614dc6096d8629038ca85d9254f07db37716327a5d85a7877f7c1803aa4c90a89bd94e075c032f2
7
- data.tar.gz: e842e4b98909a1c9ceeafe1eccb86f7fe9b5a97c7a20016d55b44f7d97adbc32a33d2150f50ead3bd04ad8d839f919535b2431edb0a3e377de8650c0d2d4e334
6
+ metadata.gz: 9cb96f82e83be9b4345bff6e786989eb50d76d86d1485d9f36c8e9ce665337fc319e1c756e6686f387689a091c6303a2ddd26c140c59f2cd5fbf68ca1b2ad879
7
+ data.tar.gz: 519181dd8b2035cd9f81f41849ebdf16b9c42c66c47b55bf6e715e9484fdc6b03dffba99d6e5c2c42324ea5e02c30918028c67c1102e882634daeb8331024cba
data/Cargo.lock CHANGED
@@ -1,6 +1,6 @@
1
1
  [root]
2
2
  name = "fast_woothee"
3
- version = "0.1.0"
3
+ version = "1.0.1"
4
4
  dependencies = [
5
5
  "ruru 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
6
6
  "woothee 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
data/Cargo.toml CHANGED
@@ -1,14 +1,16 @@
1
1
  [package]
2
2
  name = "fast_woothee"
3
- version = "1.0.0"
3
+ version = "1.0.1"
4
4
  authors = ["Ian Ker-Seymer <i.kerseymer@gmail.com>"]
5
+ repository = "https://github.com/ianks/fast_woothee"
6
+ publish = false
5
7
 
6
8
  [lib]
7
9
  crate-type = ["dylib"]
8
10
 
9
11
  [dependencies]
10
12
  woothee = "^0.6"
11
- ruru = "*"
13
+ ruru = "^0.9"
12
14
 
13
15
 
14
16
  [package.metadata.thermite]
data/fast_woothee.gemspec CHANGED
@@ -6,7 +6,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
6
 
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = "fast_woothee"
9
- spec.version = "1.0.0"
9
+ spec.version = "1.0.1"
10
10
  spec.authors = ["Ian Ker-Seymer"]
11
11
  spec.email = ["i.kerseymer@gmail.com"]
12
12
 
@@ -17,6 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
18
  f.match(%r{^(test|spec|features)/})
19
19
  end
20
+
20
21
  spec.bindir = "exe"
21
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
23
  spec.require_paths = ["lib"]
data/src/lib.rs CHANGED
@@ -42,7 +42,7 @@ methods!(
42
42
  #[no_mangle]
43
43
  pub extern fn initialize_fast_woothee() {
44
44
  Class::new("FastWoothee", None).define(|itself| {
45
- itself.const_set("VERSION", &RString::new("1.0.0").freeze());
45
+ itself.const_set("VERSION", &RString::new("1.0.1").freeze());
46
46
  itself.def_self("parse", parse);
47
47
  itself.def_self("crawler?", crawler);
48
48
  });
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_woothee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Ker-Seymer