raygun-apm 0.0.8-universal-darwin → 0.0.10-universal-darwin

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: a416646174e206ad737ad9b4b2389811da802a2b3f2f069a37cf9382099c38d9
4
- data.tar.gz: eef414ffb7dab921a273302a0bce3a9cd1d96f8d2317da4c94794e3920dd15e9
3
+ metadata.gz: a64be739df5b650bb75bb83cfbf0be78b0c33977a6c13dd2deb84d3d9c982f47
4
+ data.tar.gz: '094d2825b1bbf4d7f1bbfffef3110ab0c9c9100e64f67a430d6cf665ed398513'
5
5
  SHA512:
6
- metadata.gz: fab34ffd1b259b6fdd42014f9227eac1c4786f1a7fd1b2a7253783383516c71f31131b8d5758c1472dabea50636e58a617744068a74b92c42f315cce05e7b7dd
7
- data.tar.gz: a822bc2b2241b676c12228f7c4d08503288c26e1384c093af47b7b1ff931d019c5b6ece1e4f190231d35b827b8dca544ae495b5767c196ff9da429b4a4ae5d1d
6
+ metadata.gz: 69d1240291d6f44d8df1478c971ee2c23f47b39e52e48e5d2e7bd137ed8bdd285ed0856888a4fae0792fba6adc77a1cd9f98b7ba8ee1388986f33baeee1f5908
7
+ data.tar.gz: e3f7671bdf85599f244996ecb8c23bed7769496d05f771926df64a11fe4c20eef857529987141417e9e84aac24835ded08947a689b8ff5190932e9ad918867ec
data/Gemfile.lock CHANGED
@@ -1,15 +1,15 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm (0.0.8-universal-darwin)
4
+ raygun-apm (0.0.10)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- benchmark_driver (0.14.17)
9
+ benchmark_driver (0.14.22)
10
10
  debase-ruby_core_source (0.10.7)
11
11
  irb (1.0.0)
12
- minitest (5.11.3)
12
+ minitest (5.13.0)
13
13
  rake (12.3.3)
14
14
  rake-compiler (1.0.8)
15
15
  rake
@@ -17,7 +17,6 @@ GEM
17
17
 
18
18
  PLATFORMS
19
19
  ruby
20
- x64-mingw32
21
20
 
22
21
  DEPENDENCIES
23
22
  benchmark_driver (~> 0.14.17)
data/README.rdoc CHANGED
@@ -33,6 +33,10 @@ To launch Raygun Agent using docker
33
33
  docker pull raygunowner/raygun-apm
34
34
  docker run -v raygun-agent:/usr/share/Raygun -e "RAYGUN_AGENT_TOKEN=<token>" -p 2790:2790 -p 2788:2788 -p 2799:2799/udp -it raygunowner/raygun-apm:latest
35
35
 
36
+ === Ruby on Rails
37
+
38
+ For Rails support see {documentation}[https://www.rubydoc.info/gems/raygun-apm-rails/0.1.0] of the railgun-apm-rails gem.
39
+
36
40
  == Profiler Setup
37
41
 
38
42
  Include the gem in your Gemfile
@@ -90,16 +94,3 @@ Extended events can be sent where appropiate
90
94
  event[:query] = 'SELECT * from FOO;'
91
95
  event[:duration] = 1000
92
96
  tracer.emit(event)
93
-
94
- === Ruby on Rails
95
-
96
- For Ruby on Rails integration the following needs to be added to the <code>application.rb</code> file
97
-
98
- require 'raygun/apm/middleware'
99
- config.middleware.use Raygun::Apm::Middleware
100
-
101
- ==== Supported versions
102
- The gem has been tested with the following Ruby on Rails versions:
103
- * 5.2.2
104
-
105
- Other versions may work as long as the same Active Support Instrumentation interface is being used.
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "0.0.8"
3
+ VERSION = "0.0.10"
4
4
  end
5
5
  end
data/raygun-apm.gemspec CHANGED
@@ -18,12 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib", "ext"]
20
20
 
21
- if RUBY_PLATFORM =~ /darwin/ && !ENV['GEM_CROSS_COMPILING']
22
- spec.files << 'lib/raygun/raygun_ext.bundle'
23
- spec.platform = 'universal-darwin'
24
- else
25
- spec.platform = Gem::Platform::RUBY
26
- end
21
+ spec.platform = Gem::Platform::RUBY
27
22
 
28
23
  spec.extensions = ["ext/raygun/extconf.rb"]
29
24
  spec.required_ruby_version = '>= 2.5.0'
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: 0.0.8
4
+ version: 0.0.10
5
5
  platform: universal-darwin
6
6
  authors:
7
7
  - Erkki Eilonen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-18 00:00:00.000000000 Z
11
+ date: 2019-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: debase-ruby_core_source
@@ -112,8 +112,7 @@ description:
112
112
  email:
113
113
  - erkki@bearmetal.eu
114
114
  executables: []
115
- extensions:
116
- - ext/raygun/extconf.rb
115
+ extensions: []
117
116
  extra_rdoc_files: []
118
117
  files:
119
118
  - Gemfile
@@ -122,6 +121,8 @@ files:
122
121
  - bin/console
123
122
  - bin/setup
124
123
  - ext/raygun/extconf.rb
124
+ - lib/raygun/2.5/raygun_ext.bundle
125
+ - lib/raygun/2.6/raygun_ext.bundle
125
126
  - lib/raygun/apm.rb
126
127
  - lib/raygun/apm/blacklist.rb
127
128
  - lib/raygun/apm/config.rb
@@ -129,7 +130,6 @@ files:
129
130
  - lib/raygun/apm/middleware.rb
130
131
  - lib/raygun/apm/tracer.rb
131
132
  - lib/raygun/apm/version.rb
132
- - lib/raygun/raygun_ext.bundle
133
133
  - raygun-apm.gemspec
134
134
  homepage:
135
135
  licenses: []
@@ -143,14 +143,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
143
143
  requirements:
144
144
  - - ">="
145
145
  - !ruby/object:Gem::Version
146
- version: 2.5.0
146
+ version: '2.5'
147
+ - - "<"
148
+ - !ruby/object:Gem::Version
149
+ version: 2.7.dev
147
150
  required_rubygems_version: !ruby/object:Gem::Requirement
148
151
  requirements:
149
152
  - - ">="
150
153
  - !ruby/object:Gem::Version
151
154
  version: '0'
152
155
  requirements: []
153
- rubygems_version: 3.0.3
156
+ rubygems_version: 3.0.2
154
157
  signing_key:
155
158
  specification_version: 4
156
159
  summary: Raygun application performance monitoring
Binary file