opentracing 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +16 -0
- data/.gitignore +50 -0
- data/.rubocop.yml +1156 -0
- data/.travis.yml +5 -0
- data/Gemfile +3 -13
- data/LICENSE +201 -20
- data/README.md +115 -5
- data/Rakefile +6 -45
- data/bin/console +6 -0
- data/bin/setup +6 -0
- data/lib/opentracing.rb +24 -0
- data/lib/opentracing/carrier.rb +25 -0
- data/lib/opentracing/span.rb +61 -0
- data/lib/opentracing/span_context.rb +15 -0
- data/lib/opentracing/tracer.rb +42 -0
- data/lib/opentracing/version.rb +3 -0
- data/opentracing.gemspec +23 -56
- metadata +41 -34
- data/.document +0 -5
- data/Gemfile.lock +0 -81
- data/VERSION +0 -1
- data/test/helper.rb +0 -34
- data/test/test_opentracing.rb +0 -7
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.1.0
|
data/test/helper.rb
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
require 'simplecov'
|
2
|
-
|
3
|
-
module SimpleCov::Configuration
|
4
|
-
def clean_filters
|
5
|
-
@filters = []
|
6
|
-
end
|
7
|
-
end
|
8
|
-
|
9
|
-
SimpleCov.configure do
|
10
|
-
clean_filters
|
11
|
-
load_adapter 'test_frameworks'
|
12
|
-
end
|
13
|
-
|
14
|
-
ENV["COVERAGE"] && SimpleCov.start do
|
15
|
-
add_filter "/.rvm/"
|
16
|
-
end
|
17
|
-
require 'rubygems'
|
18
|
-
require 'bundler'
|
19
|
-
begin
|
20
|
-
Bundler.setup(:default, :development)
|
21
|
-
rescue Bundler::BundlerError => e
|
22
|
-
$stderr.puts e.message
|
23
|
-
$stderr.puts "Run `bundle install` to install missing gems"
|
24
|
-
exit e.status_code
|
25
|
-
end
|
26
|
-
require 'test/unit'
|
27
|
-
require 'shoulda'
|
28
|
-
|
29
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
30
|
-
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
31
|
-
require 'opentracing'
|
32
|
-
|
33
|
-
class Test::Unit::TestCase
|
34
|
-
end
|