raygun-apm-rails 0.1.8 → 0.1.13
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/.gitignore +1 -0
- data/README.rdoc +1 -2
- data/lib/raygun/apm/rails.rb +3 -3
- data/lib/raygun/apm/rails/railtie.rb +0 -1
- data/lib/raygun/apm/rails/version.rb +1 -1
- metadata +3 -4
- data/raygun-apm-rails-0.1.0.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: feedfb6825f3dbe8893072208bc6904f1a838fb785b0b771aa39276a7bf6c60a
|
4
|
+
data.tar.gz: 8e3ba8a42d36bbeb70ca0cd7666e0275620e3f14f65b0f1f9ab7f32104842f8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44ddcc5ac107e35f6ef4ca34200cae8253f988847d325f8a96456f03a9d6a8e903e68af259d5091efbcb931a9590e4910f953d8e2597ef073e5516b6f5351cd6
|
7
|
+
data.tar.gz: aaa9672094ac627d4f5cf2d8c52d193e1928e2d02713f000a748c8b6529737acd46228eed2d6aa1490ac6df8c33b5848c9f85d3bf62e43431485f32944194487
|
data/.gitignore
CHANGED
data/README.rdoc
CHANGED
@@ -17,10 +17,9 @@ Distributed as a Rails wrapper to inject the precompiled native profiler gem.
|
|
17
17
|
|
18
18
|
The profiler only supports CRuby, also known as Matz's Ruby Interpreter (MRI).
|
19
19
|
|
20
|
-
* 2.4.x (End of life upstream release that does not receive backports anymore)
|
21
20
|
* 2.5.x
|
22
21
|
* 2.6.x
|
23
|
-
* 2.7.x
|
22
|
+
* 2.7.x
|
24
23
|
|
25
24
|
{Contact us}[https://raygun.com/about/contact] to support other Ruby versions.
|
26
25
|
|
data/lib/raygun/apm/rails.rb
CHANGED
@@ -51,11 +51,9 @@ module Raygun
|
|
51
51
|
ActionDispatch
|
52
52
|
ActiveSupport
|
53
53
|
ActionView
|
54
|
-
ApplicationHelper
|
55
54
|
SQLite3
|
56
55
|
Mysql2
|
57
56
|
Erubi
|
58
|
-
ApplicationController
|
59
57
|
RequestStore
|
60
58
|
WEBrick
|
61
59
|
Puma
|
@@ -70,4 +68,6 @@ module Raygun
|
|
70
68
|
end
|
71
69
|
end
|
72
70
|
|
73
|
-
|
71
|
+
if defined?(::Rails) && !ENV['RAYGUN_SKIP_MIDDLEWARE']
|
72
|
+
require "raygun/apm/rails/railtie"
|
73
|
+
end
|
@@ -3,7 +3,6 @@ module Raygun
|
|
3
3
|
module Rails
|
4
4
|
class Railtie < ::Rails::Railtie
|
5
5
|
initializer "raygun.apm" do |app|
|
6
|
-
return if ENV['RAYGUN_SKIP_MIDDLEWARE']
|
7
6
|
require "raygun/apm"
|
8
7
|
require "raygun/apm/rails/middleware"
|
9
8
|
Raygun::Apm::Blacklist.extend_with Raygun::Apm::Rails::BLACKLIST
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raygun-apm-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erkki Eilonen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: raygun-apm
|
@@ -84,7 +84,6 @@ files:
|
|
84
84
|
- lib/raygun/apm/rails/middleware.rb
|
85
85
|
- lib/raygun/apm/rails/railtie.rb
|
86
86
|
- lib/raygun/apm/rails/version.rb
|
87
|
-
- raygun-apm-rails-0.1.0.gem
|
88
87
|
- raygun-apm-rails.gemspec
|
89
88
|
homepage:
|
90
89
|
licenses: []
|
@@ -104,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
103
|
- !ruby/object:Gem::Version
|
105
104
|
version: '0'
|
106
105
|
requirements: []
|
107
|
-
rubygems_version: 3.0.
|
106
|
+
rubygems_version: 3.0.6
|
108
107
|
signing_key:
|
109
108
|
specification_version: 4
|
110
109
|
summary: Raygun application performance monitoring for Rails
|
data/raygun-apm-rails-0.1.0.gem
DELETED
Binary file
|