isorun 0.1.0.pre-x86_64-darwin → 0.1.2.pre-x86_64-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 +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: 19c9e3f95c967d442a50c264cc8fe925be1d61fcaa332fe9adb0db12a8af690a
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 73aa1771fa3fcb381d19034633d4f8f53a72b8a98e917de5e29595b210afff56
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 4ae837ff1d29be48cea47f5410866310d2eb8be0683259182bd0e73b0da99775bc416339fe3be207442eff743dd9031aff6a3baa0fc415e54cae0ade007a896c
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: c89477a62bdac401e8373d10bffe2084eb18a497211e423e677cd06a364e6322b8e740fdbce1846ffe43d9d88e670313d50f859fcc281f152d9e7f8c63447d1e
         
     | 
    
        data/ext/isorun/Cargo.toml
    CHANGED
    
    
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         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-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
         
     |