fast_woothee 1.3.0 → 1.3.1

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
  SHA1:
3
- metadata.gz: ee1555bcedeb0f91225ab560fa17eb9887ec3cbd
4
- data.tar.gz: b917c2a9c357744bfb8b0d76c24413a944305b0e
3
+ metadata.gz: f3c618c401f2c9d0f3d6ba92ac86552848f0e903
4
+ data.tar.gz: d899fdbb9d377ab648ce5e3965c3164e9ed0f95b
5
5
  SHA512:
6
- metadata.gz: ddf04c0b09b7b9dc837295259cade2298593e5edecf54c6c149a10b15d546ae32fff3521cd2e47afa06509796cfa14f8e793dbf4bdabda0ffd0a52c7b9eb51dc
7
- data.tar.gz: 7b47c7feaf769614422e8064723ebb65e6f67183a6ebc509f706ca3be744ad78d6b1615ca7d078dea0451753a0d773bf699393e8e28e3087d762a66f7da92fe2
6
+ metadata.gz: b505fdafe87855484fe2df072ce17ae6987f8a104beeb5daefcc63c02cf52012f8315f31c3edd5b6b363d4cba33ae50b3b8dceb5d32157e8c28bb794477f5412
7
+ data.tar.gz: 6cf63d072738a3f78e1946577687dd910885274db40ce241bdba8b34b2b2b1534a2c6474a4155ff62b369b18b62c0dd0133c6ece2cc2f8918ed3892469213971
data/.travis.yml CHANGED
@@ -11,9 +11,9 @@ env:
11
11
  global:
12
12
  - THERMITE_DEBUG_FILENAME: /tmp/thermite-debug.log
13
13
  matrix:
14
- - FWOOTHEE_RUBY_VERSION: 2.3.5
15
- - FWOOTHEE_RUBY_VERSION: 2.4.2
16
- - FWOOTHEE_RUBY_VERSION: 2.5.0
14
+ - FWOOTHEE_RUBY_VERSION: 2.3.6
15
+ - FWOOTHEE_RUBY_VERSION: 2.4.3
16
+ - FWOOTHEE_RUBY_VERSION: 2.5.1
17
17
  matrix:
18
18
  include:
19
19
  - os: linux
data/Cargo.lock CHANGED
@@ -8,7 +8,7 @@ dependencies = [
8
8
 
9
9
  [[package]]
10
10
  name = "fast_woothee"
11
- version = "1.3.0"
11
+ version = "1.3.1"
12
12
  dependencies = [
13
13
  "ruru 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
14
14
  "woothee 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
data/Cargo.toml CHANGED
@@ -1,22 +1,16 @@
1
1
  [package]
2
2
  name = "fast_woothee"
3
- version = "1.3.0"
3
+ version = "1.3.1"
4
4
  authors = ["Ian Ker-Seymer <i.kerseymer@gmail.com>"]
5
5
  repository = "https://github.com/ianks/fast_woothee"
6
6
  publish = false
7
7
 
8
8
  [lib]
9
- crate-type = ["cdylib"]
9
+ crate-type = ["dylib"]
10
10
 
11
11
  [dependencies]
12
12
  woothee = "^0.7"
13
13
  ruru = "^0.9"
14
14
 
15
-
16
15
  [package.metadata.thermite]
17
16
  github_releases = true
18
- github_release_type = "latest"
19
- # Only for github_release_type = "cargo"
20
- # git_tag_format = "v%s-rust"
21
- git_tag_regex = "^v(\\d+\\.\\d+\\.\\d+)$"
22
-
data/fast_woothee.gemspec CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'fast_woothee'
8
- spec.version = '1.3.0'
8
+ spec.version = '1.3.1'
9
9
  spec.authors = ['Ian Ker-Seymer']
10
10
  spec.email = ['i.kerseymer@gmail.com']
11
11
 
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.3.0").freeze());
45
+ itself.const_set("VERSION", &RString::new("1.3.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.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Ker-Seymer