isorun 0.1.0.pre-x86_64-linux → 0.1.2.pre-x86_64-linux
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/lib/isorun/2.7/isorun.so +0 -0
 - data/lib/isorun/3.0/isorun.so +0 -0
 - data/lib/isorun/3.1/isorun.so +0 -0
 - data/lib/isorun/resolver.rb +9 -2
 - data/lib/isorun/version.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 7b3140a8811c5b8ca70337e35f6ea6764f4dc3eedfd75a228eb40f75db960ef0
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 69960c4eeb8184ffc820fb99ccc83feae5ebb55d2c7e4bca8b75e28066f21bbd
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: bbdef35153b9cc60de2b2f0c209fbdb11120eae921ae2a773bf47b912d36df18afe29035394119f51f1e180dac695ea25793b2b38a1836a19e80e93eceecc363
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: aba0b823cb3312ab811e3fbe816e50eb667c64b6476c0cdcbc77f66b222a472e2e0ed25350063bcdb6029cfcd82f0edeb0a60ce6ba1b97f2adfab721f1a30f07
         
     | 
    
        data/ext/isorun/Cargo.toml
    CHANGED
    
    
    
        data/lib/isorun/2.7/isorun.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/isorun/3.0/isorun.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/isorun/3.1/isorun.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/isorun/resolver.rb
    CHANGED
    
    | 
         @@ -6,7 +6,7 @@ module Isorun 
     | 
|
| 
       6 
6 
     | 
    
         
             
                  if Rails.env.development?
         
     | 
| 
       7 
7 
     | 
    
         
             
                    Rails.root.join("app", "assets", "builds", "#{bundle_id}-server.js").to_s
         
     | 
| 
       8 
8 
     | 
    
         
             
                  else
         
     | 
| 
       9 
     | 
    
         
            -
                     
     | 
| 
      
 9 
     | 
    
         
            +
                    asset_path("#{bundle_id}-server")
         
     | 
| 
       10 
10 
     | 
    
         
             
                  end
         
     | 
| 
       11 
11 
     | 
    
         
             
                }
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
         @@ -14,8 +14,15 @@ module Isorun 
     | 
|
| 
       14 
14 
     | 
    
         
             
                  if Rails.env.development?
         
     | 
| 
       15 
15 
     | 
    
         
             
                    Rails.root.join("app", "assets", "builds", "#{bundle_id}.js").to_s
         
     | 
| 
       16 
16 
     | 
    
         
             
                  else
         
     | 
| 
       17 
     | 
    
         
            -
                     
     | 
| 
      
 17 
     | 
    
         
            +
                    asset_path(bundle_id)
         
     | 
| 
       18 
18 
     | 
    
         
             
                  end
         
     | 
| 
       19 
19 
     | 
    
         
             
                }
         
     | 
| 
       20 
20 
     | 
    
         
             
              end
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
              private
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
              def asset_path(asset)
         
     | 
| 
      
 25 
     | 
    
         
            +
                asset_path = Rails.application.assets_manifest.assets["#{asset}.js"]
         
     | 
| 
      
 26 
     | 
    
         
            +
                "#{Rails.application.assets_manifest.directory}/#{asset_path}"
         
     | 
| 
      
 27 
     | 
    
         
            +
              end
         
     | 
| 
       21 
28 
     | 
    
         
             
            end
         
     | 
    
        data/lib/isorun/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: isorun
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.2.pre
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86_64-linux
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Hannes Moser
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2022-12- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2022-12-10 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: railties
         
     |