vx-instrumentation 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 56e99e02c5dae2b4ec7353e76076122226c1c71e
4
- data.tar.gz: 854bb9c8b52c7cfd9644d591bec489e78382803b
3
+ metadata.gz: c6f3539c02757293efee0e64a668929c1b018c5b
4
+ data.tar.gz: 6db37fe9192c4e4a1b77cd459e63edd83b589386
5
5
  SHA512:
6
- metadata.gz: 981b646a3a26047e37911260e05a9f6b8449a5363769205c23933b2622cf9b1cc28cc30b71ad1fb1487dd19b0e0c63e2e3ea9236ebc6a138d917d8d66da7c011
7
- data.tar.gz: fa8fcfa4c0cde7ac633e43a7eac8c3f8b2c3ae4c1986dafa36f975dccacb8a954c1f7c865b8012ec771bf431b4f80f8e04b44a5bb9fb2994aa347ec8e90aace8
6
+ metadata.gz: 7a5686b764e309df063e7857352ae779b4d4999a7098c19181ae252c7a1ee75e023fefa6ed02a23aa10e365abae2937448c2384f9e3f81652f885f51a69f25a2
7
+ data.tar.gz: b53d15e39ea54cbfcd71c87b1f0880a8fbc4cf2d1c516af198056554aa2a33ae26fb864b9614fc2cf04793d13f225ce1f2ca48fa7e087930c2bab9afd31763c1
@@ -1,5 +1,5 @@
1
1
  module Vx
2
2
  module Instrumentation
3
- VERSION = "0.0.6"
3
+ VERSION = "0.0.7"
4
4
  end
5
5
  end
@@ -0,0 +1,9 @@
1
+ module Vx
2
+ module Instrumentation
3
+ class Worker < Subscriber
4
+
5
+ event(/\.worker$/)
6
+
7
+ end
8
+ end
9
+ end
@@ -9,6 +9,7 @@ require File.expand_path("../instrumentation/active_record", __FILE__)
9
9
  require File.expand_path("../instrumentation/action_dispatch", __FILE__)
10
10
  require File.expand_path("../instrumentation/rails", __FILE__)
11
11
  require File.expand_path("../instrumentation/amqp_consumer", __FILE__)
12
+ require File.expand_path("../instrumentation/worker", __FILE__)
12
13
 
13
14
  module Vx
14
15
  module Instrumentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vx-instrumentation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Galinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-02 00:00:00.000000000 Z
11
+ date: 2014-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -75,6 +75,7 @@ files:
75
75
  - lib/vx/instrumentation/rails.rb
76
76
  - lib/vx/instrumentation/subscriber.rb
77
77
  - lib/vx/instrumentation/version.rb
78
+ - lib/vx/instrumentation/worker.rb
78
79
  - spec/lib/instrumentation_spec.rb
79
80
  - spec/lib/logger_spec.rb
80
81
  - spec/spec_helper.rb