proscenium 0.20.0-arm64-darwin → 0.20.1-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/lib/proscenium/monkey.rb +6 -2
 - data/lib/proscenium/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: 76c6a4eef20a371d1e7536d08ded760034a095122b5f2f929b6e2dfebe5e689d
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 74a88b48891a895d05d2d242bd8e848752c26badb29551f4d3a35263c7980326
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 461dc801438856ce12e49af9b1203f748335f98617b3d4f7d1a43a5039a9a42a3738341fdfcdacfbbe01be5a20f280a2333a6c6765dc0dca6e9962be152273c2
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 15f819ad13d6280c4c59e8482413dd43d2e401e31b7e7a27a8cb7ae2ff3370d8410491d45fe504ff03e3e4b55a60f88e674283ac1620046cf0ca5db9cb1d29e2
         
     | 
    
        data/lib/proscenium/monkey.rb
    CHANGED
    
    | 
         @@ -24,6 +24,8 @@ module Proscenium 
     | 
|
| 
       24 
24 
     | 
    
         
             
                  end
         
     | 
| 
       25 
25 
     | 
    
         | 
| 
       26 
26 
     | 
    
         
             
                  def sideload_template_assets(tpl, controller, options)
         
     | 
| 
      
 27 
     | 
    
         
            +
                    return unless (tpl_path = Pathname.new(tpl.identifier)).file?
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
       27 
29 
     | 
    
         
             
                    options = {} if options.nil?
         
     | 
| 
       28 
30 
     | 
    
         
             
                    options = { js: options, css: options } unless options.is_a?(Hash)
         
     | 
| 
       29 
31 
     | 
    
         | 
| 
         @@ -40,7 +42,7 @@ module Proscenium 
     | 
|
| 
       40 
42 
     | 
    
         
             
                      options[k] = controller.instance_eval(&options[k]) if options[k].is_a?(Proc)
         
     | 
| 
       41 
43 
     | 
    
         
             
                    end
         
     | 
| 
       42 
44 
     | 
    
         | 
| 
       43 
     | 
    
         
            -
                    Importer.sideload  
     | 
| 
      
 45 
     | 
    
         
            +
                    Importer.sideload tpl_path, **options
         
     | 
| 
       44 
46 
     | 
    
         
             
                  end
         
     | 
| 
       45 
47 
     | 
    
         
             
                end
         
     | 
| 
       46 
48 
     | 
    
         | 
| 
         @@ -64,6 +66,8 @@ module Proscenium 
     | 
|
| 
       64 
66 
     | 
    
         
             
                  end
         
     | 
| 
       65 
67 
     | 
    
         | 
| 
       66 
68 
     | 
    
         
             
                  def sideload_template_assets(tpl, options)
         
     | 
| 
      
 69 
     | 
    
         
            +
                    return unless (tpl_path = Pathname.new(tpl.identifier)).file?
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
       67 
71 
     | 
    
         
             
                    options = {} if options.nil?
         
     | 
| 
       68 
72 
     | 
    
         
             
                    options = { js: options, css: options } unless options.is_a?(Hash)
         
     | 
| 
       69 
73 
     | 
    
         | 
| 
         @@ -80,7 +84,7 @@ module Proscenium 
     | 
|
| 
       80 
84 
     | 
    
         
             
                      options[k] = controller.instance_eval(&options[k]) if options[k].is_a?(Proc)
         
     | 
| 
       81 
85 
     | 
    
         
             
                    end
         
     | 
| 
       82 
86 
     | 
    
         | 
| 
       83 
     | 
    
         
            -
                    Importer.sideload  
     | 
| 
      
 87 
     | 
    
         
            +
                    Importer.sideload tpl_path, **options
         
     | 
| 
       84 
88 
     | 
    
         
             
                  end
         
     | 
| 
       85 
89 
     | 
    
         
             
                end
         
     | 
| 
       86 
90 
     | 
    
         
             
              end
         
     | 
    
        data/lib/proscenium/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: proscenium
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.20. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.20.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: arm64-darwin
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Joel Moss
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2025-10- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2025-10-07 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: ffi
         
     |