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 +4 -4
- data/.travis.yml +3 -3
- data/Cargo.lock +1 -1
- data/Cargo.toml +2 -8
- data/fast_woothee.gemspec +1 -1
- data/src/lib.rs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3c618c401f2c9d0f3d6ba92ac86552848f0e903
|
4
|
+
data.tar.gz: d899fdbb9d377ab648ce5e3965c3164e9ed0f95b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
15
|
-
- FWOOTHEE_RUBY_VERSION: 2.4.
|
16
|
-
- FWOOTHEE_RUBY_VERSION: 2.5.
|
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.
|
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.
|
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 = ["
|
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
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.
|
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
|
});
|