isorun 0.1.5.pre-arm64-darwin → 0.1.6.pre-arm64-darwin
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 +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: 728e85ec14783a4e1df04bdfde425e5edd0dcda0ed888b5c9cb63846dcf54db5
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 236a0956a5654d4e8a2dd5f6d5b3ff34db693b5c23ec024c69663750150e31b7
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 7e0f4e9f0e58480210c3972d7bd46ae5199ca9c7b90caf5e9c7624540c3dff738cc0cb017b3aa05b33e17891784bfb1b93b4e84a78353480baf9389b7e180c26
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: dfb127e45f6bc304397bfc41f354ad403885e65b895fb157b236db0d16f5955d1e773008c4b5af9e434ee86110c495c13b514aa733fee10b5c81f925d90a4ece
         
     | 
    
        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