activeerror 1.1.0 → 1.1.1

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: '018a130d382073d7eb66c2f786dc6b2ad5b5ef59f26f4a4e717dd82d66cd9ed6'
4
- data.tar.gz: 135d86e49142e37547f30add626f9f359b59afd7619961e25cf4c5b805598126
3
+ metadata.gz: cf8f5a1ee01022330a7ab7fd51b9d49e5bd39a1fa3ac4430c90e1321b7d4d2a1
4
+ data.tar.gz: f36c4e1b8052c14316e14075c9de5624ac3a09ee0816164f3d5e064f0bf6f55b
5
5
  SHA512:
6
- metadata.gz: da8062b4201ff1e12b224c2801805727270a52ab2f0d87cfacbc2e3e2c212093e4ae06649a59833934043e8c8b7662fa631ed2d3ca719351596c3a8786abe59d
7
- data.tar.gz: 868fa1fc5fb9199c2352edfcb68e4d451a111c956a7c6a7293f9265a5c6dbe5e43a62c7422b8cf70c7e79ea446a0067baa5370d34a789d9116756e366acbb477
6
+ metadata.gz: 81a4a5f81fd404d6d154ad6a65d27dc2f5690113d0b2f4b284d1a878295734526d9be88ae2cf0fd71c8c7d46b358b4e9aaf382abcb9578f16990ea2a6d46fe0d
7
+ data.tar.gz: ee9c6c4bca50c0dd8220b12c112bdfcc20d88b646cbc1c15cca1425d46c5a9768d9f1c9fc963c9febf8352f90936f0e16b4c868fbd6a565979b96c3c2c66f685
data/README.md CHANGED
@@ -19,8 +19,8 @@ noise) and then we recreate the error and display it using the built in debug
19
19
  view from Rails. Once you've resolved the error you can click "Resolve" which
20
20
  will destroy the record.
21
21
 
22
- ![screenshot 1](https://github.com/npezza93/active_error/blob/main/.github/screenshot1.png)
23
- ![screenshot 2](https://github.com/npezza93/active_error/blob/main/.github/screenshot2.png)
22
+ ![screenshot 1](https://github.com/npezza93/activeerror/blob/main/.github/screenshot1.png)
23
+ ![screenshot 2](https://github.com/npezza93/activeerror/blob/main/.github/screenshot2.png)
24
24
 
25
25
  ## Installation
26
26
  Add this line to your application's Gemfile:
@@ -41,11 +41,11 @@ $ gem install activeerror
41
41
 
42
42
  And then install migrations:
43
43
  ```bash
44
- bin/rails active_error:install
44
+ bin/rails generate active_error:install
45
45
  bin/rails rails db:migrate
46
46
  ```
47
47
 
48
- This also mounts a route n your routes file to view the errors at `/errors`.
48
+ This also mounts a route in your routes file to view the errors at `/errors`.
49
49
 
50
50
 
51
51
  ##### Config
@@ -70,7 +70,7 @@ push git commits and tags, and push the `.gem` file to GitHub.
70
70
  ## Contributing
71
71
 
72
72
  Bug reports and pull requests are welcome on
73
- [GitHub](https://github.com/npezza93/active_error). This project is intended to
73
+ [GitHub](https://github.com/npezza93/activeerror). This project is intended to
74
74
  be a safe, welcoming space for collaboration, and contributors are expected to
75
75
  adhere to the [Contributor Covenant](http://contributor-covenant.org) code of
76
76
  conduct.
@@ -7,7 +7,9 @@ module ActiveError
7
7
  class Engine < ::Rails::Engine
8
8
  isolate_namespace ActiveError
9
9
 
10
- initializer "active_error.middleware" do |_app|
10
+ initializer "active_error.middleware" do |app|
11
+ app.config.middleware.use ActiveError::Middleware
12
+
11
13
  ActionController::Base.before_action do
12
14
  Rails.error.set_context(active_error_request: request)
13
15
  end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveError
4
+ class Middleware
5
+ def initialize(app)
6
+ @app = app
7
+ end
8
+
9
+ def call(env)
10
+ @app.call(env)
11
+ rescue StandardError => e
12
+ unless Rails.application.config.reloading_enabled?
13
+ Rails.error.report(e, handled: false,
14
+ source: "application.action_dispatch")
15
+ end
16
+ raise
17
+ end
18
+ end
19
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveError
4
- VERSION = "1.1.0"
4
+ VERSION = "1.1.1"
5
5
  end
data/lib/active_error.rb CHANGED
@@ -4,6 +4,7 @@ require "active_error/exception_mock/default"
4
4
  require "active_error/exception_mock/template_error"
5
5
  require "active_error/exception_mock"
6
6
  require "active_error/captor"
7
+ require "active_error/middleware"
7
8
  require "active_error/renderer"
8
9
  require "active_error/engine"
9
10
  require "active_error/railtie"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeerror
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Pezza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-15 00:00:00.000000000 Z
11
+ date: 2024-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -66,6 +66,7 @@ files:
66
66
  - lib/active_error/exception_mock.rb
67
67
  - lib/active_error/exception_mock/default.rb
68
68
  - lib/active_error/exception_mock/template_error.rb
69
+ - lib/active_error/middleware.rb
69
70
  - lib/active_error/railtie.rb
70
71
  - lib/active_error/renderer.rb
71
72
  - lib/active_error/version.rb