sequel-opentracing 0.0.1.pre → 0.0.2.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -5
- data/lib/sequel/opentracing/version.rb +1 -1
- data/lib/sequel/opentracing.rb +2 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ead5e430c04af908124993ecb1f17d6b4561d50d53753f93739147edd3296c5
|
4
|
+
data.tar.gz: c7e476c0d02acbf5334916c1d7f96b439888ba220da51688852933555b7bed49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03af931f54a32920d18c7082690c9843303be8d22f3a179880afc4e02758a3de9a21a50c28df0458bdc6560d85203d0ce4b81bc97232a3d00c6b6c6a5a38c1d2
|
7
|
+
data.tar.gz: 6916c780402de793ab82768a54d0f5fc8339edad6a06dbf07c570229f4688ae4c11839ec73a3c4ad8805cb12dcc4448c2622e89566a913d1721698d15a9c105d
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Instrument Sequel database events with OpenTracing.
|
7
7
|
|
8
|
-
*
|
8
|
+
* This gem is in early stage of development, pre-release gems available
|
9
9
|
|
10
10
|
## Installation
|
11
11
|
|
@@ -31,7 +31,6 @@ Sequel::OpenTracing.instrument
|
|
31
31
|
|
32
32
|
```
|
33
33
|
|
34
|
-
|
35
34
|
## Development
|
36
35
|
|
37
36
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
@@ -40,12 +39,12 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
40
39
|
|
41
40
|
## Contributing
|
42
41
|
|
43
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
42
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/foodiefm/sequel-opentracing. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
44
43
|
|
45
44
|
## License
|
46
45
|
|
47
|
-
The gem is available as open source under the terms of the [
|
46
|
+
The gem is available as open source under the terms of the [BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause).
|
48
47
|
|
49
48
|
## Code of Conduct
|
50
49
|
|
51
|
-
Everyone interacting in the Sequel::Opentracing project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
50
|
+
Everyone interacting in the Sequel::Opentracing project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/foodiefm/sequel-opentracing/blob/master/CODE_OF_CONDUCT.md).
|
data/lib/sequel/opentracing.rb
CHANGED
@@ -12,10 +12,8 @@ module Sequel
|
|
12
12
|
##
|
13
13
|
def self.instrument
|
14
14
|
warn 'Sequel < 4.37.0 not supported' if ::Sequel::VERSION < '4.37.0'
|
15
|
-
::Sequel::Database.send(:prepend,
|
16
|
-
|
17
|
-
::Sequel::Dataset.send(:prepend,
|
18
|
-
Sequel::OpenTracing::Dataset::Tracer::InstanceMethods)
|
15
|
+
::Sequel::Database.send(:prepend, Database::Tracer::InstanceMethods)
|
16
|
+
::Sequel::Dataset.send(:prepend, Dataset::Tracer::InstanceMethods)
|
19
17
|
self
|
20
18
|
end
|
21
19
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sequel-opentracing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- larte
|
@@ -164,7 +164,7 @@ dependencies:
|
|
164
164
|
- - "~>"
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0.4'
|
167
|
-
description:
|
167
|
+
description: Sequel OpenTracing instrumentation
|
168
168
|
email:
|
169
169
|
- devops@foodie.fm
|
170
170
|
executables: []
|
@@ -200,5 +200,5 @@ rubyforge_project:
|
|
200
200
|
rubygems_version: 2.7.7
|
201
201
|
signing_key:
|
202
202
|
specification_version: 4
|
203
|
-
summary: Sequel OpenTracing
|
203
|
+
summary: Sequel OpenTracing instrumentation
|
204
204
|
test_files: []
|