isorun 0.1.0.pre-x86_64-darwin → 0.1.1.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 +11 -2
 - 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: 6d5f237885b1f9a3a9baea5e88a0ecd7fd72c3888d536c934976b42e03d5c508
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 226171288be05614237e3dbe6723243339617ade138a2a9c41894b3dcef80d15
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 6733ea647f1ac656d44ff7441b6b4cf88f497b89facc60ce3dec521230aa39bd8ba2f64fb69786a32d8d6bcfee73ee4546bdbf079060770f8b7ca822782bf445
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 21dc57e56c467f1d5389454fe50b1e85466fdf92e045d999e975868ee0234de14372d818c4217046adba61f58b093faaaa69cc5bee7fd073c34f742d35183c40
         
     | 
    
        data/ext/isorun/Cargo.toml
    CHANGED
    
    
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
    
        data/lib/isorun/resolver.rb
    CHANGED
    
    | 
         @@ -6,7 +6,8 @@ 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 = ActionController::Base.helpers.asset_path("#{bundle_id}-server")
         
     | 
| 
      
 10 
     | 
    
         
            +
                    asset_path(asset)
         
     | 
| 
       10 
11 
     | 
    
         
             
                  end
         
     | 
| 
       11 
12 
     | 
    
         
             
                }
         
     | 
| 
       12 
13 
     | 
    
         | 
| 
         @@ -14,8 +15,16 @@ module Isorun 
     | 
|
| 
       14 
15 
     | 
    
         
             
                  if Rails.env.development?
         
     | 
| 
       15 
16 
     | 
    
         
             
                    Rails.root.join("app", "assets", "builds", "#{bundle_id}.js").to_s
         
     | 
| 
       16 
17 
     | 
    
         
             
                  else
         
     | 
| 
       17 
     | 
    
         
            -
                     
     | 
| 
      
 18 
     | 
    
         
            +
                    asset = ActionController::Base.helpers.asset_path(bundle_id)
         
     | 
| 
      
 19 
     | 
    
         
            +
                    asset_path(asset)
         
     | 
| 
       18 
20 
     | 
    
         
             
                  end
         
     | 
| 
       19 
21 
     | 
    
         
             
                }
         
     | 
| 
       20 
22 
     | 
    
         
             
              end
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
              private
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
              def asset_path(asset)
         
     | 
| 
      
 27 
     | 
    
         
            +
                asset_path = Rails.application.assets_manifest.assets["#{asset}.js"]
         
     | 
| 
      
 28 
     | 
    
         
            +
                "#{Rails.application.assets_manifest.directory}/#{asset_path}"
         
     | 
| 
      
 29 
     | 
    
         
            +
              end
         
     | 
| 
       21 
30 
     | 
    
         
             
            end
         
     | 
    
        data/lib/isorun/version.rb
    CHANGED