isorun 0.1.5.pre-x86_64-darwin → 0.1.6.pre-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/isorun/Cargo.toml +1 -1
- data/ext/isorun/src/js/worker.rs +1 -8
- data/lib/isorun/2.7/isorun.bundle +0 -0
- data/lib/isorun/3.0/isorun.bundle +0 -0
- data/lib/isorun/3.1/isorun.bundle +0 -0
- data/lib/isorun/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b35798ccf95eb1f8e6ec527419b949e6addabf19927112e6608d763bcda9944
|
4
|
+
data.tar.gz: 2bfb8f9f35832d09b66186cd0a30909d91429915a19ed2b985cd4119e2c6107e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45474d5583c3d5b878d7bffe65ea22dacf93d8678134f9d92ae2358b0cf3c8611d5b6b2e8eabd57aee5c732255f0c77da15c03b17323dffb3faa697a9607670d
|
7
|
+
data.tar.gz: b186dbae6efb8299075cd7336c41715e7b82dce20a0f749220911ced6901ecaa0de47d3d429493023a803bfcef9cf8f1b0399a0e5540ac2584e9da3fe00b5568
|
data/ext/isorun/Cargo.toml
CHANGED
data/ext/isorun/src/js/worker.rs
CHANGED
@@ -204,15 +204,8 @@ impl Default for Worker {
|
|
204
204
|
|
205
205
|
// todo: we don't use the main module at all, but it could be used as an
|
206
206
|
// entry point for "eval" JavaScript.
|
207
|
-
let default_path = Path::new(env!("CARGO_MANIFEST_DIR"))
|
208
|
-
.join("../..")
|
209
|
-
.canonicalize()
|
210
|
-
.unwrap()
|
211
|
-
.into_os_string()
|
212
|
-
.into_string()
|
213
|
-
.unwrap();
|
214
207
|
let isorun_native_gem_path =
|
215
|
-
env::var("ISORUN_NATIVE_GEM_PATH").
|
208
|
+
env::var("ISORUN_NATIVE_GEM_PATH").unwrap();
|
216
209
|
let js_path = Path::new(isorun_native_gem_path.as_str())
|
217
210
|
.join("ext/isorun/src/call.js");
|
218
211
|
|
Binary file
|
Binary file
|
Binary file
|
data/lib/isorun/version.rb
CHANGED