isorun 0.1.5.pre-x86_64-linux → 0.1.6.pre-x86_64-linux

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: 425cb5a36c48c15c8d7e05e336cefb0c12921a64ff52f1bec061270386d0bae8
4
- data.tar.gz: 4847244f7463591220b11506e11120236ad3c81f3ab7ac2b4acab4fe82063d82
3
+ metadata.gz: 5a2a3dd9a75e0acd0f6dc8339db3028a8deed4020970268488f9d0f06d503aa5
4
+ data.tar.gz: 3193e958415a77908d2462b667c4a2eb347909cc60684bc0d3915cf91569db2b
5
5
  SHA512:
6
- metadata.gz: 3642a8e54820ce5eca25721d5d22b4a78cf7d9df530006d5bb38c4651df26ba001375472568bb9ae49f0df543705e5c09f8f6124eb5eaf71432929ea5a3b0214
7
- data.tar.gz: 476317987740b058717dcf5041e1c0aec793366403658d161e424612029257b5e50a1fb64fe07ddabfccddf3d8bb50f1bc5d93e99a3fa180b0275da466b10cb3
6
+ metadata.gz: 598eadb1ecd04196250b5b94024cd3f05b95f3bebe0a3a8924e3822ca132a9003fd5cc7c979680a7e7cac35449df6feb57fec2bfefdfa8522ab58adcf78c69fa
7
+ data.tar.gz: 16b57543336c4ee2e30e1b99d7d404519fe6a64ca2a725694d5e3c7267507c536e8a5c4d44aad3670e54526bfa9901e7a3eeecc08b3780e62a4e12ac106123fe
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "isorun"
3
- version = "0.1.5"
3
+ version = "0.1.6"
4
4
  edition = "2021"
5
5
  authors = ["Hannes Moser <box@hannesmoser.at>"]
6
6
  homepage = "https://github.com/eliias/isorun"
@@ -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").unwrap_or(default_path.clone());
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Isorun
4
- VERSION = "0.1.5.pre"
4
+ VERSION = "0.1.6.pre"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isorun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5.pre
4
+ version: 0.1.6.pre
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Hannes Moser