scout_apm 1.4.2 → 1.4.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5dfbd237d7807fb1bb725e664bb1f13a985bdca1
4
- data.tar.gz: bbff3e6d54f08e072b93789f3d3430ca10fe601b
3
+ metadata.gz: e35b6c5c23a78e589b4756310047fb0bc7ac4adf
4
+ data.tar.gz: 5489c84a0cd1a0f3df4ec85a54b9d6a8f34692b3
5
5
  SHA512:
6
- metadata.gz: f794b60fc223dc0ad1077b60d33de95675d1e6fcc4bf2126a66a49889815d9b35f2d92f854f2863ad7c59b9938b93e5491ec1e1c4812c4a76eb997e20ff7d83d
7
- data.tar.gz: 2758c61a4b2e6eb6bcc8c0fffe8809de7286716d02a42ebc3bbf629fbef15fad88179058ce519f9e4402f712c2c76adc73a8cc5b1851ef7d62680f4be37875bb
6
+ metadata.gz: 1786feaa5c35aa342e8d4e805d923754cb37de844f396cba10e66b56c341ea9facf9e8d8fec90c33ce23c3fda4fc062325c2adc7096ee7cf6a9a2bd3f0e31e33
7
+ data.tar.gz: 85c19b4db97a36905e497db1c2e70bad95ab528d656db5f29378b55b53c5fdc256ce83bfa14f297bbdf47be21dacbbfcc999da7a55e6f78042d8707200c55b6d
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.4.3
2
+
3
+ * Add a to_s call to have HTTPClient work with URI objects. Thanks to Nicolai for providing the change!
4
+
1
5
  # 1.4.2
2
6
 
3
7
  * Add HTTPClient instrumentation
@@ -24,7 +24,7 @@ module ScoutApm
24
24
  def request_with_scout_instruments(*args, &block)
25
25
  method = args[0].to_s
26
26
  url = args[1]
27
- url = url && url[0..99]
27
+ url = url && url.to_s[0..99]
28
28
 
29
29
  self.class.instrument("HTTP", method, :desc => url) do
30
30
  request_without_scout_instruments(*args, &block)
@@ -1,4 +1,4 @@
1
1
  module ScoutApm
2
- VERSION = "1.4.2"
2
+ VERSION = "1.4.3"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout_apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Haynes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-03-01 00:00:00.000000000 Z
12
+ date: 2016-03-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest