web47core 3.2.3.6 → 3.2.3.7
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/app/controllers/errors_controller.rb +4 -1
- data/lib/web47core/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: 89a0f833ce0b5b96eaeaf2aeffc63a7547d932f86df19e58d615c552f8ae014e
|
4
|
+
data.tar.gz: 662d682b7c1726d92f97e88a9e063b227a96254d144e871858eb81caf5862c67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b74804a97ed0727a0924555f968f8ebb918e3e25287fafa78a3bb18937e1f6ad287e0d1bb0313a87b5aa5a14d7a2b1557a061c3c599f381ed3491401e504586b
|
7
|
+
data.tar.gz: 55074be6de0e97db6a89a02c57230c2c527cecd4a2fb688d84d2c05478076a7761e844d77c823151b5387228a93a444995694830c6f015458fda2517cf6a1350
|
@@ -4,6 +4,9 @@
|
|
4
4
|
class ErrorsController < ActionController::Base
|
5
5
|
# No CSRF/layout/filters; keep it cheap
|
6
6
|
def not_found
|
7
|
-
|
7
|
+
if defined?(NewRelic) && defined?(NewRelic::Agent)
|
8
|
+
NewRelic::Agent.ignore_transaction
|
9
|
+
end
|
10
|
+
head :gone # 410 Gone is used here to indicate that the resource has been intentionally and permanently removed, and clients should not expect it to be available again. This is stronger than the standard 404 Not Found, which is used when the resource may be available in the future.
|
8
11
|
end
|
9
12
|
end
|
data/lib/web47core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web47core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.3.
|
4
|
+
version: 3.2.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Schroeder
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|