isorun 0.1.1.pre-arm64-darwin → 0.1.3.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/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/resolver.rb +7 -9
 - 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: 1bd1ddc811fdc407578a3a53a21a2d05ae33a53b6302c86cad63123637f6f26f
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 97195d73eb26ca935a633bde9bf487b018bedad77dfafe29ce56046b785ed298
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 74a69d85a65c99e965e64050d571428f6014d5acd26d4980934d475aa9a15feb14ea2d0b4bceef7cdf2bc637d54a191f8336090e6c1b860ec989e6630eb33e0a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 01ece88b925c636ba233745a76ec411f7d640fb281a7e90792bb259248c57536209271235bdbab247abb631ab7e097c78e2fc3124dfaafb8a93192293e261ce2
         
     | 
    
        data/ext/isorun/Cargo.toml
    CHANGED
    
    
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
    
        data/lib/isorun/resolver.rb
    CHANGED
    
    | 
         @@ -6,8 +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 
     | 
    
         
            -
                     
     | 
| 
       10 
     | 
    
         
            -
                    asset_path(asset)
         
     | 
| 
      
 9 
     | 
    
         
            +
                    asset_path("#{bundle_id}-server")
         
     | 
| 
       11 
10 
     | 
    
         
             
                  end
         
     | 
| 
       12 
11 
     | 
    
         
             
                }
         
     | 
| 
       13 
12 
     | 
    
         | 
| 
         @@ -15,16 +14,15 @@ module Isorun 
     | 
|
| 
       15 
14 
     | 
    
         
             
                  if Rails.env.development?
         
     | 
| 
       16 
15 
     | 
    
         
             
                    Rails.root.join("app", "assets", "builds", "#{bundle_id}.js").to_s
         
     | 
| 
       17 
16 
     | 
    
         
             
                  else
         
     | 
| 
       18 
     | 
    
         
            -
                     
     | 
| 
       19 
     | 
    
         
            -
                    asset_path(asset)
         
     | 
| 
      
 17 
     | 
    
         
            +
                    asset_path(bundle_id)
         
     | 
| 
       20 
18 
     | 
    
         
             
                  end
         
     | 
| 
       21 
19 
     | 
    
         
             
                }
         
     | 
| 
       22 
     | 
    
         
            -
              end
         
     | 
| 
       23 
20 
     | 
    
         | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
      
 21 
     | 
    
         
            +
                private
         
     | 
| 
       25 
22 
     | 
    
         | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
      
 23 
     | 
    
         
            +
                def asset_path(asset)
         
     | 
| 
      
 24 
     | 
    
         
            +
                  asset_path = Rails.application.assets_manifest.assets["#{asset}.js"]
         
     | 
| 
      
 25 
     | 
    
         
            +
                  "#{Rails.application.assets_manifest.directory}/#{asset_path}"
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
       29 
27 
     | 
    
         
             
              end
         
     | 
| 
       30 
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.3.pre
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: arm64-darwin
         
     | 
| 
       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
         
     |