raygun-apm 1.0.79-universal-darwin → 1.1.1-universal-darwin

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: f0c421431de413804f642989dd40bc930e64336b389379d4af787b6fd7f7ef9f
4
- data.tar.gz: c9cc20e7cd8ec1bbb351c23282a3880fce0e1c6163a29409f7649ece540f8605
3
+ metadata.gz: 6c09f8bef1e70f67c548dfc1ec2fa0982865146f43cf65ee44c555cb8ca3c33d
4
+ data.tar.gz: 1555e361270651e635cd94b374513558429ac8b1bc66b7f6aace339443719760
5
5
  SHA512:
6
- metadata.gz: d3925e11f91a0f0f5bd968c437fe6e06cbb0d4cd30b32c9542f3de8b4b41e7d1122851f2d56c0ab6e69dc2a35f35fdca54cf7614e96ee63421a7b36bf0bf5a55
7
- data.tar.gz: 6af3b632651c2bd2ccb261d5227635950cc6fe4942277c8ba0c482ba45dea3b3ac7a24e4586f9f484e5ec7afbb37c81bc7ad151b2bcdb06f3f7472e08f2e3773
6
+ metadata.gz: 9e84a43f63d9090073bdf459ef6cb43642db66b6c5c03c828833b129142792e4f4516ff49fd68465bf323f80eeec50a9ab6d2f581ff7961d0b3d00ca7105aade
7
+ data.tar.gz: 2570ad558cded83dc5308f4592bea559bd69ba23bb56591d1a454876a043ceb7c6833fe77dc5c5931761af44abff668b2e71e55f9aa07d6b0e3ae2d4b5e70e64
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 CHANGED
@@ -1,6 +1,12 @@
1
+ <<<<<<< HEAD
2
+ MIT License
3
+
4
+ Copyright (c) 2021 Raygun
5
+ =======
1
6
  The MIT License (MIT)
2
7
 
3
8
  Copyright (c) 2021 Raygun Limited
9
+ >>>>>>> Open Source the profiler
4
10
 
5
11
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
12
  of this software and associated documentation files (the "Software"), to deal
@@ -19,6 +25,12 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
25
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
26
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
27
  SOFTWARE.
28
+ <<<<<<< HEAD
29
+ =======
22
30
 
23
31
  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
32
+ clause license here https://github.com/antirez/rax/blob/master/COPYING
33
+
34
+ This software also bundles bipbuffer, an open source project, released under
35
+ the BSD license here https://github.com/willemt/bipbuffer/blob/master/LICENSE
36
+ >>>>>>> Open Source the profiler
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.79"
3
+ VERSION = "1.1.1"
4
4
  MINIMUM_AGENT_VERSION = "1.0.1190.0"
5
5
  end
6
6
  end
data/raygun-apm.gemspec CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.homepage = "https://raygun.com/platform/apm"
13
13
  spec.license = "MIT"
14
14
 
15
- spec.files = Dir['README.rdoc', 'raygun-apm.gemspec', 'LICENSE', '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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.79
4
+ version: 1.1.1
5
5
  platform: universal-darwin
6
6
  authors:
7
7
  - Raygun Limited
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-28 00:00:00.000000000 Z
11
+ date: 2021-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: debase-ruby_core_source
@@ -214,7 +214,9 @@ executables: []
214
214
  extensions: []
215
215
  extra_rdoc_files: []
216
216
  files:
217
+ - COPYING.rax
217
218
  - LICENSE
219
+ - LICENSE.bipbuffer
218
220
  - README.rdoc
219
221
  - bin/console
220
222
  - bin/raygun-diagnostics