dolores_rpm 3.3.4.6 → 3.3.4.7
Sign up to get free protection for your applications and to get access to all the features.
data/dolores_rpm.gemspec
CHANGED
@@ -5,14 +5,14 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "dolores_rpm"
|
8
|
-
s.version = "3.3.4.
|
8
|
+
s.version = "3.3.4.7"
|
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", "Jon Guymon", "Justin George", "Darin Swanson"]
|
12
12
|
s.date = "2012-05-21"
|
13
13
|
s.description = "New Relic is a performance management system, developed by New Relic,\nInc (http://www.newrelic.com). This is a fork that adds\tadditional\ninstrumentation to the DataMapper instrumentation because we could\nnot view time spent in the database.\n"
|
14
14
|
s.email = "support@newrelic.com"
|
15
|
-
s.executables = ["
|
15
|
+
s.executables = ["newrelic", "mongrel_rpm", "newrelic_cmd"]
|
16
16
|
s.extra_rdoc_files = [
|
17
17
|
"CHANGELOG",
|
18
18
|
"LICENSE",
|
@@ -87,10 +87,7 @@ DependencyDetection.defer do
|
|
87
87
|
for method in [ :aggregate, :find, :find_by_sql ] do
|
88
88
|
next unless method_defined? method
|
89
89
|
add_method_tracer(method, 'ActiveRecord/#{self.name}/' + method.to_s)
|
90
|
-
add_method_tracer(method, 'ActiveRecord/find', :push_scope => false)
|
91
|
-
add_method_tracer(method, 'ActiveRecord/all', :push_scope => false)
|
92
90
|
end
|
93
|
-
|
94
91
|
end
|
95
92
|
end
|
96
93
|
|
@@ -140,10 +137,7 @@ DependencyDetection.defer do
|
|
140
137
|
for method in [ :aggregate ] do
|
141
138
|
next unless method_defined? method
|
142
139
|
add_method_tracer(method, 'ActiveRecord/#{self.name}/' + method.to_s)
|
143
|
-
add_method_tracer(method, 'ActiveRecord/find', :push_scope => false)
|
144
|
-
add_method_tracer(method, 'ActiveRecord/all', :push_scope => false)
|
145
140
|
end
|
146
|
-
|
147
141
|
end
|
148
142
|
end
|
149
143
|
end
|
data/lib/new_relic/version.rb
CHANGED
@@ -4,7 +4,7 @@ module NewRelic
|
|
4
4
|
MAJOR = 3
|
5
5
|
MINOR = 3
|
6
6
|
TINY = 4
|
7
|
-
BUILD =
|
7
|
+
BUILD = 7 # 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
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dolores_rpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 121
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 3
|
9
9
|
- 4
|
10
|
-
-
|
11
|
-
version: 3.3.4.
|
10
|
+
- 7
|
11
|
+
version: 3.3.4.7
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Bill Kayser
|
@@ -71,9 +71,9 @@ description: |
|
|
71
71
|
|
72
72
|
email: support@newrelic.com
|
73
73
|
executables:
|
74
|
-
- newrelic_cmd
|
75
74
|
- newrelic
|
76
75
|
- mongrel_rpm
|
76
|
+
- newrelic_cmd
|
77
77
|
extensions: []
|
78
78
|
|
79
79
|
extra_rdoc_files:
|