proscenium 0.19.0.beta12-x86_64-linux → 0.19.0.beta13-x86_64-linux
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/bundled_gems.rb +1 -1
- data/lib/proscenium/ext/proscenium +0 -0
- data/lib/proscenium/railtie.rb +15 -0
- 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: 6053a8594dc05a2a8fd0478c095e4e9eb5c94b92ad355f6d8e48520cf7e12f26
         | 
| 4 | 
            +
              data.tar.gz: 3da63172e773fb796f08bc50790c4816511a4375616335a35b4fb81a004eef91
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 8649f60e73d98ab8c8fc9b1a9f873ae0f957994fae62ae25262ea33ccaf2c84915699c9172c4bbea296b141bae98369a5b61c349b9365a871b679f1d468a9b22
         | 
| 7 | 
            +
              data.tar.gz: 284bb9d738c8874954b97c2f3e0cbf02e45564ed788cdfa07c17c675ded0c2e544cdaa92625619f7f256b097874bd4ceed513ef58bc4f418beb5d9a8b1783bc2
         | 
| Binary file | 
    
        data/lib/proscenium/railtie.rb
    CHANGED
    
    | @@ -33,6 +33,11 @@ module Proscenium | |
| 33 33 | 
             
                  end
         | 
| 34 34 | 
             
                end
         | 
| 35 35 |  | 
| 36 | 
            +
                initializer 'proscenium.debugging' do
         | 
| 37 | 
            +
                  tpl_path = root.join('lib', 'proscenium', 'templates').to_s
         | 
| 38 | 
            +
                  ActionDispatch::DebugView::RESCUES_TEMPLATE_PATHS << tpl_path
         | 
| 39 | 
            +
                end
         | 
| 40 | 
            +
             | 
| 36 41 | 
             
                initializer 'proscenium.middleware' do |app|
         | 
| 37 42 | 
             
                  app.middleware.insert_after ActionDispatch::Static, Proscenium::Middleware
         | 
| 38 43 | 
             
                end
         | 
| @@ -50,5 +55,15 @@ module Proscenium | |
| 50 55 | 
             
                    ActionView::PartialRenderer.prepend Monkey::PartialRenderer
         | 
| 51 56 | 
             
                  end
         | 
| 52 57 | 
             
                end
         | 
| 58 | 
            +
             | 
| 59 | 
            +
                initializer 'proscenium.public_path' do |app|
         | 
| 60 | 
            +
                  if app.config.public_file_server.enabled
         | 
| 61 | 
            +
                    headers = app.config.public_file_server.headers || {}
         | 
| 62 | 
            +
                    index = app.config.public_file_server.index_name || 'index'
         | 
| 63 | 
            +
             | 
| 64 | 
            +
                    app.middleware.insert_after(ActionDispatch::Static, ActionDispatch::Static,
         | 
| 65 | 
            +
                                                root.join('public').to_s, index:, headers:)
         | 
| 66 | 
            +
                  end
         | 
| 67 | 
            +
                end
         | 
| 53 68 | 
             
              end
         | 
| 54 69 | 
             
            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.19.0. | 
| 4 | 
            +
              version: 0.19.0.beta13
         | 
| 5 5 | 
             
            platform: x86_64-linux
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Joel Moss
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2025-04- | 
| 11 | 
            +
            date: 2025-04-23 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: ffi
         |