newrelic_rpm 2.11.2 → 2.11.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of newrelic_rpm might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ v2.11.3
2
+ * fix bug in startup when running JRuby
3
+
1
4
  v2.11.2
2
5
  * fix for unicorn not reporting when the proc line had 'master' in it
3
6
  * fix regression for passenger 2.0 and earlier
@@ -224,9 +224,10 @@ module NewRelic
224
224
  # that may be doing things like running the app (hello sinatra).
225
225
  if RUBY_VERSION =~ /rubinius/i
226
226
  list = at_exit { shutdown }
227
- # move the shutdown handler to the front of the list, to execute last:
227
+ # move the shutdown handler to the front of the list, to
228
+ # execute last:
228
229
  list.unshift(list.pop)
229
- elsif !defined?(JRuby) or !defined(Sinatra::Application)
230
+ elsif !defined?(JRuby) or !defined?(Sinatra::Application)
230
231
  at_exit { at_exit { shutdown } }
231
232
  end
232
233
  end
@@ -3,7 +3,7 @@ module NewRelic
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 2
5
5
  MINOR = 11
6
- TINY = 2
6
+ TINY = 3
7
7
  BUILD = nil #'0' # Set to nil for a release, 'beta1', 'alpha', etc for prerelease builds
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
9
9
  end
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.11.2"
8
+ s.version = "2.11.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-04-21}
12
+ s.date = %q{2010-05-01}
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
  - 11
8
- - 2
9
- version: 2.11.2
8
+ - 3
9
+ version: 2.11.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-04-21 00:00:00 -07:00
17
+ date: 2010-05-01 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency