copperegg-apm 1.0.0.pre15 → 1.0.0.pre16

Sign up to get free protection for your applications and to get access to all the features.
@@ -58,7 +58,7 @@ module CopperEgg
58
58
  ::Rails.application.eager_load!
59
59
  end
60
60
 
61
- ObjectSpace.each_object(Class) do |class_or_module|
61
+ ObjectSpace.each_object(Module) do |class_or_module|
62
62
  begin
63
63
  class_or_module.instance_methods(false).each do |name|
64
64
  method = class_or_module.instance_method(name)
@@ -6,7 +6,7 @@ module CopperEgg
6
6
  end
7
7
 
8
8
  def benchmarkable?
9
- return false if !user_defined? || attribute?
9
+ return false if !user_defined? || attribute? || name == :included
10
10
  name =~ /\A[\w\d\!\?]+\z/ ? true : false
11
11
  end
12
12
 
@@ -1,5 +1,5 @@
1
1
  module CopperEgg
2
2
  module APM
3
- GEM_VERSION = '1.0.0.pre15' unless defined? GEM_VERSION
3
+ GEM_VERSION = '1.0.0.pre16' unless defined? GEM_VERSION
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: copperegg-apm
3
3
  version: !ruby/object:Gem::Version
4
- hash: -778372730
4
+ hash: -181622884
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 0
10
10
  - pre
11
- - 15
12
- version: 1.0.0.pre15
11
+ - 16
12
+ version: 1.0.0.pre16
13
13
  platform: ruby
14
14
  authors:
15
15
  - Mike Bradford
@@ -345,7 +345,7 @@ rubyforge_project:
345
345
  rubygems_version: 1.8.25
346
346
  signing_key:
347
347
  specification_version: 3
348
- summary: copperegg-apm-1.0.0.pre15
348
+ summary: copperegg-apm-1.0.0.pre16
349
349
  test_files:
350
350
  - spec/action_controller_spec.rb
351
351
  - spec/apm_spec.rb