proscenium 0.19.0.beta12-arm64-darwin → 0.19.0.beta13-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/bundled_gems.rb +1 -1
- 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: 48930dfb1e25ffefb58a3eb9afb4a6e1cfee10b06de09068bbe3aa31f6f353e4
         | 
| 4 | 
            +
              data.tar.gz: 9009248f238445ea4fef3a7c1d5f6d4247ddec5eb23dd678b5d66124ced6d98d
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: aa878fdfc1cefeba57d7df97a13444e2ffe29a336869810959c57bec32e0288fe21276d7a942c2c659955585700035361a2906bd9b518d3496ee235053425167
         | 
| 7 | 
            +
              data.tar.gz: 2b0881a2c4163fe554c72e223fa6210e9cbaf18e3401ee0410240d5ac8fcea61f45af5abf9a95d5df4129e4da09cd095a060d5d35118fff26d783ff72e785d70
         | 
    
        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: arm64-darwin
         | 
| 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
         |