isorun 0.1.1.pre-x86_64-darwin → 0.1.3.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 +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: 53c416a35429b0ee7e68022afccf9270e30c11876133fc7b39d7f422e8d44e9f
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: eed0a40dbe26cf2d54ed8b0c90b5c61fde97ad65f557ca003f6140f9eba55452
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 13434f1e3e19d46e6be0347cc453d6831f9472817230f692f84ba434237c88376266642cec1d8aac3b36f08291d71a851a9f17b7e61112c83be8d9f018bc4386
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: a55b03c59efbde2500ff610499c8e80b50b56d0f61275f64b969ca4067821c934f98d9dff971bb54f379e5c6c46c6db01504755c427ad0bac906badcaabf3122
         
     | 
    
        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: 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
         
     |