newrelic_rpm 2.12.2 → 2.12.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.
Potentially problematic release.
This version of newrelic_rpm might be problematic. Click here for more details.
- data/CHANGELOG +3 -0
- data/lib/new_relic/agent/agent.rb +7 -9
- data/lib/new_relic/version.rb +1 -1
- data/newrelic_rpm.gemspec +2 -2
- metadata +3 -3
data/CHANGELOG
CHANGED
@@ -224,15 +224,13 @@ module NewRelic
|
|
224
224
|
|
225
225
|
# Our shutdown handler needs to run after other shutdown handlers
|
226
226
|
# that may be doing things like running the app (hello sinatra).
|
227
|
-
if
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
at_exit { at_exit { shutdown } }
|
235
|
-
end
|
227
|
+
if RUBY_VERSION =~ /rubinius/i
|
228
|
+
list = at_exit { shutdown }
|
229
|
+
# move the shutdown handler to the front of the list, to
|
230
|
+
# execute last:
|
231
|
+
list.unshift(list.pop)
|
232
|
+
elsif !defined?(JRuby) or !defined?(Sinatra::Application)
|
233
|
+
at_exit { at_exit { shutdown } }
|
236
234
|
end
|
237
235
|
end
|
238
236
|
control.log! "New Relic RPM Agent #{NewRelic::VERSION::STRING} Initialized: pid = #$$"
|
data/lib/new_relic/version.rb
CHANGED
data/newrelic_rpm.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{newrelic_rpm}
|
8
|
-
s.version = "2.12.
|
8
|
+
s.version = "2.12.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Bill Kayser"]
|
12
|
-
s.date = %q{2010-06-
|
12
|
+
s.date = %q{2010-06-10}
|
13
13
|
s.description = %q{New Relic RPM is a Ruby performance management system, developed by
|
14
14
|
New Relic, Inc (http://www.newrelic.com). RPM provides you with deep
|
15
15
|
information about the performance of your Ruby on Rails or Merb
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 2
|
7
7
|
- 12
|
8
|
-
-
|
9
|
-
version: 2.12.
|
8
|
+
- 3
|
9
|
+
version: 2.12.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Bill Kayser
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-06-
|
17
|
+
date: 2010-06-10 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|