newrelic_rpm 2.11.2.beta2 → 2.11.2
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 +1 -2
- data/lib/new_relic/agent/shim_agent.rb +1 -1
- data/lib/new_relic/version.rb +1 -1
- data/newrelic.yml +0 -5
- data/newrelic_rpm.gemspec +3 -3
- metadata +6 -9
data/CHANGELOG
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
v2.11.2
|
2
2
|
* fix for unicorn not reporting when the proc line had 'master' in it
|
3
|
-
* allow overriding the log file directory via 'log_file_path' in newrelic.yml
|
4
|
-
* allow overriding the log name via 'log_file_name' in newrelic.yml
|
5
3
|
* fix regression for passenger 2.0 and earlier
|
4
|
+
* fix after_fork in the shim
|
6
5
|
|
7
6
|
v2.11.1
|
8
7
|
* republished gem without generated rdocs
|
@@ -13,7 +13,7 @@ class NewRelic::Agent::ShimAgent < NewRelic::Agent::Agent
|
|
13
13
|
@transaction_sampler.extend NewRelic::Agent::TransactionSampler::Shim
|
14
14
|
@error_collector.extend NewRelic::Agent::ErrorCollector::Shim
|
15
15
|
end
|
16
|
-
def after_fork; end
|
16
|
+
def after_fork *args; end
|
17
17
|
def start *args; end
|
18
18
|
def shutdown; end
|
19
19
|
def push_trace_execution_flag(*args); end
|
data/lib/new_relic/version.rb
CHANGED
@@ -4,7 +4,7 @@ module NewRelic
|
|
4
4
|
MAJOR = 2
|
5
5
|
MINOR = 11
|
6
6
|
TINY = 2
|
7
|
-
BUILD =
|
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
|
10
10
|
|
data/newrelic.yml
CHANGED
@@ -48,11 +48,6 @@ common: &default_settings
|
|
48
48
|
# log level here.
|
49
49
|
log_level: info
|
50
50
|
|
51
|
-
# If you wish to override the location of the log file, you can
|
52
|
-
# uncomment this
|
53
|
-
# log_file_path: /var/log
|
54
|
-
# log_file_name: newrelic_agent.log
|
55
|
-
|
56
51
|
# The newrelic agent communicates with the RPM service via http by
|
57
52
|
# default. If you want to communicate via https to increase
|
58
53
|
# security, then turn on SSL by setting this value to true. Note,
|
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.2"
|
9
9
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
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-
|
12
|
+
s.date = %q{2010-04-21}
|
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
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic_rpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
4
|
+
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 2
|
7
7
|
- 11
|
8
8
|
- 2
|
9
|
-
|
10
|
-
version: 2.11.2.beta2
|
9
|
+
version: 2.11.2
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Bill Kayser
|
@@ -15,7 +14,7 @@ autorequire:
|
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date: 2010-04-
|
17
|
+
date: 2010-04-21 00:00:00 -07:00
|
19
18
|
default_executable:
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
@@ -239,13 +238,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
239
238
|
version: "0"
|
240
239
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
241
240
|
requirements:
|
242
|
-
- - "
|
241
|
+
- - ">="
|
243
242
|
- !ruby/object:Gem::Version
|
244
243
|
segments:
|
245
|
-
-
|
246
|
-
|
247
|
-
- 1
|
248
|
-
version: 1.3.1
|
244
|
+
- 0
|
245
|
+
version: "0"
|
249
246
|
requirements: []
|
250
247
|
|
251
248
|
rubyforge_project:
|