raygun-apm 1.0.78-x86-linux → 1.0.83-x86-linux

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
  SHA256:
3
- metadata.gz: f99cb16c7ab517334f86d94e36764e9a324148595d6f8ef49d9ca1da9907354c
4
- data.tar.gz: 14743fe93387586760785b37e4d23d6c5600e30aa94c2088e20c35c96daadd2d
3
+ metadata.gz: 4f406c5c12ec78901a0ae8ead2615a14a3ee23ccf36b87969e69299793faab0a
4
+ data.tar.gz: 5d1dc37e1732b854c4eab435bee0939e3cb953a5364e55b28d90c02fd3cb51f0
5
5
  SHA512:
6
- metadata.gz: d4bd7c40dec6e0ea53f2e8ee726245074485f65502bfb0a4f6dcce7104262c534566395c09aa93af648f1b04be44daa9446d3d63a2f2471068d02b79aab4c511
7
- data.tar.gz: b91be352b71e8a355625838a08f0d184d7f31b1e9ca0f5ff8e2ce6c6b8d93f2cb650373390a57bbb75d3b034e086b7c82844bb8de72392956a62dbe568879b2e
6
+ metadata.gz: e17f084aa045a28af2bcf665c18f7b5c9f1ea0d820f32ee63339269f2dc70dbf2c0566078bb890f10945760a12fd28b8b419ec5a4dd14e95b53f1def992b3b20
7
+ data.tar.gz: 8dc1f759d41c876ec335ac6845de45b6f83cf8516071f6f53323fd5194c99c97a21ef63b369de5bea1c9e3d847e26d1474b3ed0dcaad64badb4541ed3047be73
data/COPYING.rax ADDED
@@ -0,0 +1,9 @@
1
+ Copyright (c) 2017, Salvatore Sanfilippo <antirez@gmail.com>
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
+
6
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+
9
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/LICENSE ADDED
@@ -0,0 +1,27 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Raygun Limited
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ This software bundles Rax, an open source project, released under the BSD two
24
+ clause license here https://github.com/antirez/rax/blob/master/COPYING
25
+
26
+ This software also bundles bipbuffer, an open source project, released under
27
+ the BSD license here https://github.com/willemt/bipbuffer/blob/master/LICENSE
data/LICENSE.bipbuffer ADDED
@@ -0,0 +1,24 @@
1
+ Copyright (c) 2011, Willem-Hendrik Thiart
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+ * Redistributions of source code must retain the above copyright
7
+ notice, this list of conditions and the following disclaimer.
8
+ * Redistributions in binary form must reproduce the above copyright
9
+ notice, this list of conditions and the following disclaimer in the
10
+ documentation and/or other materials provided with the distribution.
11
+ * The names of its contributors may not be used to endorse or promote
12
+ products derived from this software without specific prior written
13
+ permission.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
+ DISCLAIMED. IN NO EVENT SHALL WILLEM-HENDRIK THIART BE LIABLE FOR ANY
19
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Binary file
Binary file
Binary file
@@ -27,6 +27,8 @@ module Raygun
27
27
  end
28
28
 
29
29
  def raygun_apm_url(uri, query)
30
+ uri = uri.to_param if uri.respond_to?(:to_param)
31
+ query = query.to_param if query.respond_to?(:to_param)
30
32
  query && uri ? URI.join(uri, query).to_s : uri.to_s
31
33
  end
32
34
 
@@ -1,6 +1,6 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.0.78"
3
+ VERSION = "1.0.83"
4
4
  MINIMUM_AGENT_VERSION = "1.0.1190.0"
5
5
  end
6
6
  end
data/raygun-apm.gemspec CHANGED
@@ -5,14 +5,14 @@ Gem::Specification.new do |spec|
5
5
  spec.name = "raygun-apm"
6
6
  spec.version = Raygun::Apm::VERSION
7
7
 
8
- spec.authors = ["Raygun", "Erkki Eilonen"]
9
- spec.email = ["support@raygun.com", "info@bearmetal.eu"]
8
+ spec.authors = ["Raygun Limited"]
9
+ spec.email = ["ruby-apm@raygun.io", "support@raygun.com"]
10
10
 
11
11
  spec.summary = %q{Raygun application performance monitoring core Profiler}
12
12
  spec.homepage = "https://raygun.com/platform/apm"
13
- #spec.license = "MIT"
13
+ spec.license = "MIT"
14
14
 
15
- spec.files = Dir['README.rdoc', 'raygun-apm.gemspec', 'lib/**/*', 'bin/**/*'].reject { |f| f.match(/raygun_ext\./) }
15
+ spec.files = Dir['README.rdoc', 'raygun-apm.gemspec', 'LICENSE', 'LICENSE.bipbuffer', 'COPYING.rax', 'lib/**/*', 'bin/**/*'].reject { |f| f.match(/raygun_ext\./) }
16
16
  spec.files += Dir['lib/raygun/**/{2}*/raygun_ext.*']
17
17
  spec.bindir = "bin"
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.78
4
+ version: 1.0.83
5
5
  platform: x86-linux
6
6
  authors:
7
- - Raygun
8
- - Erkki Eilonen
7
+ - Raygun Limited
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2021-01-05 00:00:00.000000000 Z
11
+ date: 2021-04-15 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: debase-ruby_core_source
@@ -209,12 +208,15 @@ dependencies:
209
208
  version: 7.1.2
210
209
  description:
211
210
  email:
211
+ - ruby-apm@raygun.io
212
212
  - support@raygun.com
213
- - info@bearmetal.eu
214
213
  executables: []
215
214
  extensions: []
216
215
  extra_rdoc_files: []
217
216
  files:
217
+ - COPYING.rax
218
+ - LICENSE
219
+ - LICENSE.bipbuffer
218
220
  - README.rdoc
219
221
  - bin/console
220
222
  - bin/raygun-diagnostics
@@ -240,7 +242,8 @@ files:
240
242
  - lib/raygun/apm/version.rb
241
243
  - raygun-apm.gemspec
242
244
  homepage: https://raygun.com/platform/apm
243
- licenses: []
245
+ licenses:
246
+ - MIT
244
247
  metadata: {}
245
248
  post_install_message:
246
249
  rdoc_options: []