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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 429b1a0799a1f8ce84e6b258ffa3859c6d88fe776a8618f7af2f39d5598f09c9
4
- data.tar.gz: 0a0550ead156fe32aa524022ef499677ef1b9681cf2b1410c8372925b82a15ab
3
+ metadata.gz: 7ead5e430c04af908124993ecb1f17d6b4561d50d53753f93739147edd3296c5
4
+ data.tar.gz: c7e476c0d02acbf5334916c1d7f96b439888ba220da51688852933555b7bed49
5
5
  SHA512:
6
- metadata.gz: 63453e7c44cddd31ff0e510c2e7f4b96337b450794c24960f3778747a57379b2f72718894495784d31a3a7755ba6dfcdae870e7676ca8dcab5146be42af5037c
7
- data.tar.gz: fbfaf8237358b8e2eb421d28f2d2be81a1d926593fec300b43641f0d0fbaac03779be306c3a07efafa477ba467265e27af3b2cc8c8b28c3bfc2d93288b6b7d16
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
- *NO GEM HAS BEEN PUBLISHED YET*
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/[USERNAME]/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.
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 [MIT License](https://opensource.org/licenses/MIT).
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/[USERNAME]/sequel-opentracing/blob/master/CODE_OF_CONDUCT.md).
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).
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sequel
4
4
  module OpenTracing
5
- VERSION = '0.0.1'
5
+ VERSION = '0.0.2'
6
6
  end
7
7
  end
@@ -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
- Sequel::OpenTracing::Database::Tracer::InstanceMethods)
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.1.pre
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 intrumentation
203
+ summary: Sequel OpenTracing instrumentation
204
204
  test_files: []