raygun-apm 1.0.78-x86-mingw32 → 1.0.79-x86-mingw32
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/LICENSE +24 -0
- data/lib/raygun/2.5/raygun_ext.so +0 -0
- data/lib/raygun/2.6/raygun_ext.so +0 -0
- data/lib/raygun/2.7/raygun_ext.so +0 -0
- data/lib/raygun/apm/version.rb +1 -1
- data/raygun-apm.gemspec +4 -4
- metadata +7 -6
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: bc862a0ec151dd24c00a0471b75cb6eeb7b8ad8d3b58c6d9d5130ee1db61d504
         | 
| 4 | 
            +
              data.tar.gz: 70e3a7b8895854d0a135a7ccdcef9b74ec5d123b8c4db0f46ece9b86286e7db5
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 2cb81478a2b86b9b15d5935ed24b88f9f8f72ff77b76a81aeeed95945e1fc28d7e2f664a7c1806002553cc0cc86dd9a7aedae2cd19cb5358c116b00dbef3ab71
         | 
| 7 | 
            +
              data.tar.gz: 280f11d524af603a51d082e5e4a233681567fa10a331e6aac46337960c381b8f29f260695847b62da5286998f513ffc71e857bf20859493cc9aca92e5dd62c9e
         | 
    
        data/LICENSE
    ADDED
    
    | @@ -0,0 +1,24 @@ | |
| 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
         | 
| Binary file | 
| Binary file | 
| Binary file | 
    
        data/lib/raygun/apm/version.rb
    CHANGED
    
    
    
        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 | 
| 9 | 
            -
              spec.email         = [" | 
| 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 | 
            -
               | 
| 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', '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. | 
| 4 | 
            +
              version: 1.0.79
         | 
| 5 5 | 
             
            platform: x86-mingw32
         | 
| 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- | 
| 11 | 
            +
            date: 2021-03-28 00:00:00.000000000 Z
         | 
| 13 12 | 
             
            dependencies:
         | 
| 14 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 14 | 
             
              name: debase-ruby_core_source
         | 
| @@ -209,12 +208,13 @@ 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 | 
            +
            - LICENSE
         | 
| 218 218 | 
             
            - README.rdoc
         | 
| 219 219 | 
             
            - bin/console
         | 
| 220 220 | 
             
            - bin/raygun-diagnostics
         | 
| @@ -240,7 +240,8 @@ files: | |
| 240 240 | 
             
            - lib/raygun/apm/version.rb
         | 
| 241 241 | 
             
            - raygun-apm.gemspec
         | 
| 242 242 | 
             
            homepage: https://raygun.com/platform/apm
         | 
| 243 | 
            -
            licenses: | 
| 243 | 
            +
            licenses:
         | 
| 244 | 
            +
            - MIT
         | 
| 244 245 | 
             
            metadata: {}
         | 
| 245 246 | 
             
            post_install_message: 
         | 
| 246 247 | 
             
            rdoc_options: []
         |