sidekiq_prometheus 1.0.0 → 1.0.1
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 +5 -0
- data/lib/sidekiq_prometheus/version.rb +1 -1
- data/sidekiq_prometheus.gemspec +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b08d553beac07f3ba8f1646a28d2c8b37cb3311a2b49bf271223c0ac65adffb9
|
|
4
|
+
data.tar.gz: 9c96177a48705863a43fad3a06299980510d1ccb5c67e8ee6f11f8e1548c80dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b25faa7040460950ad4bd595e31a10f426e013e7b8682e7aa32430d2b991b3f792c3bbdbd2775c8095111aa1031920606f53dde35df3aad8d2c012dcda2c890e
|
|
7
|
+
data.tar.gz: d5dd5b43d083da3db316a67541342348c682491e48e5a94112964b28641fd2509cf25b5903bbc9e31d1d2ac1bbad0aa0811ba0f95fadc64b40aea7dafe012f92
|
data/README.md
CHANGED
|
@@ -247,6 +247,11 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
247
247
|
|
|
248
248
|
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
249
249
|
|
|
250
|
+
## Contributors
|
|
251
|
+
|
|
252
|
+
* Lukas Eklund ([@leklund](https://github.com/leklund))
|
|
253
|
+
* NHM Tanveer Hossain Khan ([@we4tech](https://github.com/we4tech))
|
|
254
|
+
|
|
250
255
|
## Contributing
|
|
251
256
|
|
|
252
257
|
Bug reports and pull requests are welcome on GitHub at https://github.com/fastly/sidekiq-prometheus. 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.
|
data/sidekiq_prometheus.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ require 'sidekiq_prometheus/version'
|
|
|
7
7
|
Gem::Specification.new do |spec|
|
|
8
8
|
spec.name = 'sidekiq_prometheus'
|
|
9
9
|
spec.version = SidekiqPrometheus::VERSION
|
|
10
|
-
spec.authors = ['Lukas Eklund']
|
|
10
|
+
spec.authors = ['Lukas Eklund', 'NHM Tanveer Hossain Khan']
|
|
11
11
|
spec.email = ['leklund@fastly.com']
|
|
12
12
|
|
|
13
13
|
spec.summary = 'Prometheus Instrumentation for Sidekiq'
|
|
@@ -29,5 +29,5 @@ Gem::Specification.new do |spec|
|
|
|
29
29
|
|
|
30
30
|
spec.add_runtime_dependency 'prometheus-client', '~> 0.10.0'
|
|
31
31
|
spec.add_runtime_dependency 'rack'
|
|
32
|
-
spec.add_runtime_dependency 'sidekiq', '
|
|
32
|
+
spec.add_runtime_dependency 'sidekiq', '> 5.1'
|
|
33
33
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sidekiq_prometheus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lukas Eklund
|
|
8
|
+
- NHM Tanveer Hossain Khan
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: exe
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2019-10-
|
|
12
|
+
date: 2019-10-30 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: bundler
|
|
@@ -112,14 +113,14 @@ dependencies:
|
|
|
112
113
|
name: sidekiq
|
|
113
114
|
requirement: !ruby/object:Gem::Requirement
|
|
114
115
|
requirements:
|
|
115
|
-
- - "
|
|
116
|
+
- - ">"
|
|
116
117
|
- !ruby/object:Gem::Version
|
|
117
118
|
version: '5.1'
|
|
118
119
|
type: :runtime
|
|
119
120
|
prerelease: false
|
|
120
121
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
122
|
requirements:
|
|
122
|
-
- - "
|
|
123
|
+
- - ">"
|
|
123
124
|
- !ruby/object:Gem::Version
|
|
124
125
|
version: '5.1'
|
|
125
126
|
description:
|