proscenium 0.11.0.pre.11-arm64-darwin → 0.11.0.pre.13-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa886294c46353e120b898e38963617da263d56ecc12bd5e5a6f4cdfac6f18f2
4
- data.tar.gz: 7f7b6a3910688e5d5ed63c72b542f30153f35b48293d5fac00afefc6161f7488
3
+ metadata.gz: e194150bceddde6ff022e44c289dc906cbad5210c12abe16534dfa569543d1bb
4
+ data.tar.gz: 70b60910b4a8170698cb1ed89dd75841274b719671fbae683892e57561d1998f
5
5
  SHA512:
6
- metadata.gz: 532bc19aed316eb0d4f201a5a7b1a4525f33fde7caf9987c4ffb194179db24dfc05f586e9b2d6d3901a083598ea5c314c599d6ec8761c08b1606145230ffef2a
7
- data.tar.gz: f119ae6fccadd08598bbc7c5b0e452d5544b755a9f7c51989247867f1bafb28206f6a941909b46f443524442403ddc5f89363b42299ec40cab50eeab1d352661
6
+ metadata.gz: 8120adfdf45a1ec565730f4075b313ad7f78e1bf246eafd6597007423af9169de4c6e605be6d78d672445b1fb33fa207db66d72d6360e03303c883b9b7ff866f
7
+ data.tar.gz: 5577d1d5952c57b9260d33a8f29231a88d69aafccd265438c04345a848214edc0de1694ccf2665cfe7bd6a57b05d0213a3774938d0797252d19c65ffca797c60
Binary file
@@ -45,6 +45,13 @@ module Proscenium
45
45
  'Proscenium::Builder::BuildError' => 'build_error'
46
46
  }
47
47
 
48
+ initializer 'proscenium.debugging' do
49
+ if Rails.gem_version >= Gem::Version.new('7.1.0')
50
+ tpl_path = root.join('lib', 'proscenium', 'templates').to_s
51
+ ActionDispatch::DebugView::RESCUES_TEMPLATE_PATHS << tpl_path
52
+ end
53
+ end
54
+
48
55
  initializer 'proscenium.middleware' do |app|
49
56
  app.middleware.insert_after ActionDispatch::Static, Middleware
50
57
  # app.middleware.insert_after ActionDispatch::Static, Rack::ETag, 'no-cache'
@@ -70,12 +77,13 @@ module Proscenium
70
77
  end
71
78
  end
72
79
 
73
- # Monkey path ActionDispatch::DebugView to use our custom error template on BuildError exceptions.
74
- class ActionDispatch::DebugView
75
- def initialize(assigns)
76
- paths = [RESCUES_TEMPLATE_PATH,
77
- Proscenium::Railtie.root.join('lib', 'proscenium', 'templates').to_s]
78
- lookup_context = ActionView::LookupContext.new(paths)
79
- super(lookup_context, assigns, nil)
80
+ if Rails.gem_version < Gem::Version.new('7.1.0')
81
+ class ActionDispatch::DebugView
82
+ def initialize(assigns)
83
+ tpl_path = Proscenium::Railtie.root.join('lib', 'proscenium', 'templates').to_s
84
+ paths = [RESCUES_TEMPLATE_PATH, tpl_path]
85
+ lookup_context = ActionView::LookupContext.new(paths)
86
+ super(lookup_context, assigns, nil)
87
+ end
80
88
  end
81
89
  end
@@ -1,11 +1,14 @@
1
1
  <header>
2
2
  <h1>
3
- <%= @exception.class.to_s %>
3
+ <%= Rails.gem_version >= Gem::Version.new('7.1.0') ? @exception_wrapper.exception_class_name : @exception.class.to_s %>
4
+ <% if params_valid? && @request.parameters['controller'] %>
5
+ in <%= @request.parameters['controller'].camelize %>Controller<% if @request.parameters['action'] %>#<%= @request.parameters['action'] %><% end %>
6
+ <% end %>
4
7
  </h1>
5
8
  </header>
6
9
 
7
10
  <main role="main" id="container">
8
- <%= render "rescues/message_and_suggestions", exception: @exception %>
11
+ <%= render "rescues/message_and_suggestions", exception: @exception, exception_wrapper: Rails.gem_version >= Gem::Version.new('7.1.0') ? @exception_wrapper : nil %>
9
12
 
10
13
  <% if @exception.error['location'] %>
11
14
  <div class="source">
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Proscenium
4
- VERSION = '0.11.0.pre.11'
4
+ VERSION = '0.11.0.pre.13'
5
5
  end
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.11.0.pre.11
4
+ version: 0.11.0.pre.13
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: 2023-10-10 00:00:00.000000000 Z
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport