raygun-apm-rails 1.0.27 → 1.0.28

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: 260710ffbf3750e8dbcff40981aa042d6513c95ddd737c457b5c18a62c04d14f
4
- data.tar.gz: 354e9620e863868d9cefa2693a271b1c260592bc162325d086cfd54884865efe
3
+ metadata.gz: e7e3e809e811345bbb8ed3fb1f94fbb023d41084ad5de44df7e9b47ecee88649
4
+ data.tar.gz: d4d7e9f4254acb5dfe409e8fb2d3369c87f718c8a77ae0b04da153d1c0dece44
5
5
  SHA512:
6
- metadata.gz: 75d8c4ff6cb0c65182aa6db99abdef0da3c02da9cf8781157de4a596948abe3f39b739d30f70c72bb0b2763f18d27e576cbf8ab360a2d04956b9d895449548e4
7
- data.tar.gz: 22e9a61b8c53a5a89e62fad4d0de5bbbce38cf43e26340d5b70f9fb0455df3744ed9a97c28667f2f9d961297eda09dcb41f25efc2261ee9e95d39dca63e49d86
6
+ metadata.gz: 7a40fa6a71ae303adfd0118bff4bd10cd1b3a94faa79b26eaa8b1ff241b6dfc473103953708abd7387e80da84b7023b2084621477a6b4a60ce52c3e6a1bba543
7
+ data.tar.gz: 898452ba25e08b1ced3e8c2ac3804025ea3f6402850c07e407b0e219cd38d3befb420d8387c267c3c91548015cbbcaa30c087d329b1770f0aeb41e6e34869397
@@ -1,5 +1,9 @@
1
1
  = Changelog
2
2
 
3
+ == 1.0.28 (April 11, 2020)
4
+
5
+ * Prefer local variables to Rack::Request methods for event value assignment (Rails 4)
6
+
3
7
  == 1.0.27 (April 11, 2020)
4
8
 
5
9
  * Restore Rails 4 support with caveat that HTTP IN paths are not fully qualified with protocol, host and port
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm-rails (1.0.27)
4
+ raygun-apm-rails (1.0.28)
5
5
  raygun-apm (~> 1.0.15)
6
6
 
7
7
  GEM
@@ -105,8 +105,8 @@ module Raygun
105
105
  end
106
106
  event = http_in_event
107
107
  event[:pid] = Process.pid
108
- event[:url] = req.url
109
- event[:verb] = req.request_method
108
+ event[:url] = url
109
+ event[:verb] = verb
110
110
  event[:status] = notification.payload[:status]
111
111
  # XXX constant milliseconds to microseconds
112
112
  event[:duration] = notification.duration * 1000
@@ -1,7 +1,7 @@
1
1
  module Raygun
2
2
  module Apm
3
3
  module Rails
4
- VERSION = "1.0.27"
4
+ VERSION = "1.0.28"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.27
4
+ version: 1.0.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raygun