tracing-matchers 1.2.0 → 1.2.1

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: 9b8076a59a439056cb0313fefe410d014d3bf7d6
4
- data.tar.gz: 78dd705242f8f66044fb89ec735bbae1111b76c0
3
+ metadata.gz: 13262221ac4749a6525e802b613b6397aaefd9de
4
+ data.tar.gz: 1f08045a9afc6643d5c7e3b705ec0535b70871ac
5
5
  SHA512:
6
- metadata.gz: f0c9984ff6fec553a550ae137fc8dcde91d38776def51a9ab6d9090a8766f135b5e08268f223975a9dde4cee36c62c13e2a6f210618ce16c17bd3ddcde1a3956
7
- data.tar.gz: 778ca5795f51f0df5c43ada74c815dca3c77c871dfd6b5f6e2c07bff50e24819b7251060b1eeb996fbff144503fcc852d15951775892e949bc0b72ff769a767b
6
+ metadata.gz: fb0ff790e51285ac9c4838dbd595df6307725f7d5980c69bf6512b20cc418c7eccb7d110e75cf7a6b1693fff9591d0ba26ac743bae3ea547472b8b22ac514f1f
7
+ data.tar.gz: c21205c8a3889c4ca4d3e85509f7dd273d7e558338cbe3f768174419c264a7aeecf805ed2427c4b4bd0b3b4ada50ae7dd104002c24bad05b1597895524cb4593
data/README.md CHANGED
@@ -60,6 +60,8 @@ expect(span).to follow_after(operation_name|span)
60
60
  High-level test examples.
61
61
 
62
62
  ```ruby
63
+ require 'tracing-matchers'
64
+
63
65
  describe "traced code" do
64
66
  context "when we expect no traces" do
65
67
  it "does not have any traces" do
@@ -1,5 +1,5 @@
1
1
  module Tracing
2
2
  module Matchers
3
- VERSION = "1.2.0"
3
+ VERSION = "1.2.1"
4
4
  end
5
5
  end
@@ -0,0 +1,2 @@
1
+ require 'test-tracer'
2
+ require 'tracing/matchers'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tracing-matchers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - iaintshine
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-09-01 00:00:00.000000000 Z
11
+ date: 2017-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-tracer
@@ -84,6 +84,7 @@ files:
84
84
  - Rakefile
85
85
  - bin/console
86
86
  - bin/setup
87
+ - lib/tracing-matchers.rb
87
88
  - lib/tracing/matchers.rb
88
89
  - lib/tracing/matchers/have_span.rb
89
90
  - lib/tracing/matchers/have_spans.rb