sidekiq-prometheus-exporter 0.1.14 → 0.1.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yaml +68 -0
  3. data/.rubocop.yml +33 -286
  4. data/Appraisals +1 -1
  5. data/README.md +12 -10
  6. data/Rakefile +24 -14
  7. data/docker/Dockerfile +4 -4
  8. data/docker/README.md +14 -8
  9. data/docker/config.ru +4 -1
  10. data/examples/metrics/config.ru +2 -0
  11. data/examples/sidekiq/sidekiq.rb +2 -0
  12. data/gemfiles/{sidekiq_3.3.1.gemfile → sidekiq_3.3.1.Gemfile} +0 -0
  13. data/gemfiles/sidekiq_3.3.1.Gemfile.lock +126 -0
  14. data/gemfiles/{sidekiq_3.x.gemfile → sidekiq_3.x.Gemfile} +0 -0
  15. data/gemfiles/sidekiq_3.x.Gemfile.lock +141 -0
  16. data/gemfiles/{sidekiq_4.x.gemfile → sidekiq_4.x.Gemfile} +0 -0
  17. data/gemfiles/sidekiq_4.x.Gemfile.lock +102 -0
  18. data/gemfiles/{sidekiq_5.x.gemfile → sidekiq_5.x.Gemfile} +0 -0
  19. data/gemfiles/sidekiq_5.x.Gemfile.lock +101 -0
  20. data/gemfiles/{sidekiq_6.x.gemfile → sidekiq_6.x.Gemfile} +0 -0
  21. data/gemfiles/sidekiq_6.x.Gemfile.lock +98 -0
  22. data/gemfiles/{sidekiq_head.gemfile → sidekiq_latest.Gemfile} +0 -0
  23. data/gemfiles/sidekiq_latest.Gemfile.lock +116 -0
  24. data/helm/sidekiq-prometheus-exporter/Chart.yaml +2 -2
  25. data/helm/sidekiq-prometheus-exporter/README.md +1 -1
  26. data/helm/sidekiq-prometheus-exporter/values.yaml +3 -1
  27. data/lib/sidekiq/prometheus/exporter/standard.rb +19 -5
  28. data/lib/sidekiq/prometheus/exporter/templates/standard.erb +13 -1
  29. data/lib/sidekiq/prometheus/exporter/version.rb +1 -1
  30. data/lib/sidekiq/prometheus/exporter.rb +1 -1
  31. data/sidekiq-prometheus-exporter.gemspec +9 -5
  32. metadata +66 -38
  33. data/.codeclimate.yml +0 -16
  34. data/.travis.yml +0 -85
  35. data/gemfiles/sidekiq_3.3.1.gemfile.lock +0 -139
  36. data/gemfiles/sidekiq_3.x.gemfile.lock +0 -139
  37. data/gemfiles/sidekiq_4.x.gemfile.lock +0 -101
  38. data/gemfiles/sidekiq_5.x.gemfile.lock +0 -100
  39. data/gemfiles/sidekiq_6.x.gemfile.lock +0 -100
  40. data/gemfiles/sidekiq_head.gemfile.lock +0 -116
data/docker/README.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Official Docker image
2
2
 
3
- This is an official Docker image for [sidekiq-prometheus-exporter](https://github.com/Strech/sidekiq-prometheus-exporter)
3
+ [0]: https://github.com/Strech/sidekiq-prometheus-exporter
4
+ [1]: https://www.iana.org/assignments/uri-schemes/prov/redis
5
+ [2]: https://github.com/resque/redis-namespace
6
+ [3]: https://github.com/redis/redis-rb/tree/v4.1.3#sentinel-support
7
+ [4]: https://github.com/mperham/sidekiq/issues/4479
8
+
9
+ This is an official Docker image for [sidekiq-prometheus-exporter][0]
4
10
  gem.
5
11
 
6
12
  It combines some approaches which were already published as images by other
@@ -13,17 +19,19 @@ and applies recommended Docker best practices.
13
19
 
14
20
  Required
15
21
 
16
- - `REDIS_URL` - [RFC 3986 generic URI][rfc3986], exclusive with `REDIS_HOST`
22
+ - `REDIS_URL` - [RFC 3986 generic URI][1], exclusive with `REDIS_HOST`
17
23
  - `REDIS_HOST` - a Redis host, exclusive with `REDIS_URL` (default: `localhost`)
18
24
 
19
25
  Optional
20
26
 
27
+ - `REDIS_SSL` - a flag to enable Redis SSL URL scheme (default: `false`)
21
28
  - `REDIS_PORT` - a Redis port (default: `6379`)
22
29
  - `REDIS_PASSWORD` - a Redis password (if you need one)
23
30
  - `REDIS_DB_NUMBER` - a Redis database number (default: `0`)
24
- - `REDIS_NAMESPACE` - a Redis [namespace][namespace] name (if you have separated sidekiq)
31
+ - `REDIS_NAMESPACE` - a Redis [namespace][2] name (if you have separated sidekiq)
25
32
  - `REDIS_SENTINELS` - a list of comma separated Redis urls (like `REDIS_URL`, but for sentinels)
26
- - `REDIS_SENTINEL_ROLE` - a role within the [sentinel][sentinel] to connect (default: `master`)
33
+ - `REDIS_SENTINEL_ROLE` - a role within the [sentinel][3] to connect (default: `master`)
34
+ - `REDIS_DISABLE_CLIENT_ID` - a flag to disable `CLIENT` command in [Sidekiq][4]
27
35
 
28
36
  :bulb: Note, that `REDIS_URL` and `REDIS_HOST` are exclusive. Since `REDIS_HOST` is more
29
37
  atomic value it will be checked after `REDIS_URL`.
@@ -31,6 +39,8 @@ atomic value it will be checked after `REDIS_URL`.
31
39
  :bulb: `REDIS_SENTINELS` will be parsed with `URI`, because of that it's
32
40
  mandatory for them to be formatted with protocol `redis://...`.
33
41
 
42
+ :bulb: `REDIS_DISABLE_CLIENT_ID` might be required if a SaaS Redis provider is being used.
43
+
34
44
  ## Examples
35
45
 
36
46
  If you don't have a running Redis instance, you can quickly spin an empty to
@@ -49,7 +59,3 @@ $ docker run -it --rm \
49
59
  -e REDIS_URL=redis://redis-instance \
50
60
  strech/sidekiq-prometheus-exporter
51
61
  ```
52
-
53
- [rfc3986]: https://www.iana.org/assignments/uri-schemes/prov/redis
54
- [namespace]: https://github.com/resque/redis-namespace
55
- [sentinel]: https://github.com/redis/redis-rb/tree/v4.1.3#sentinel-support
data/docker/config.ru CHANGED
@@ -7,12 +7,13 @@ config = {}
7
7
  config[:url] = ENV['REDIS_URL'] if ENV.key?('REDIS_URL')
8
8
 
9
9
  unless config.key?(:url)
10
+ scheme = (ENV.fetch('REDIS_SSL', 'false') == 'true') ? 'rediss' : 'redis'
10
11
  host = ENV.fetch('REDIS_HOST', 'localhost')
11
12
  port = ENV.fetch('REDIS_PORT', 6379)
12
13
  db_number = ENV.fetch('REDIS_DB_NUMBER', 0)
13
14
  password = ":#{ENV['REDIS_PASSWORD']}" if ENV.key?('REDIS_PASSWORD')
14
15
 
15
- config[:url] = "redis://#{password}@#{host}:#{port}/#{db_number}"
16
+ config[:url] = "#{scheme}://#{password}@#{host}:#{port}/#{db_number}"
16
17
  end
17
18
 
18
19
  if ENV.key?('REDIS_NAMESPACE')
@@ -33,6 +34,8 @@ if ENV.key?('REDIS_SENTINELS')
33
34
  end
34
35
  end
35
36
 
37
+ config[:id] = nil if ENV.key?('REDIS_DISABLE_CLIENT_ID')
38
+
36
39
  Sidekiq.configure_client { |client| client.redis = config }
37
40
 
38
41
  run Sidekiq::Prometheus::Exporter.to_app
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'sidekiq'
2
4
  require 'sidekiq/prometheus/exporter'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class SleepyWorker
2
4
  include Sidekiq::Worker
3
5
 
@@ -0,0 +1,126 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.17)
5
+ rack (>= 1.6.0)
6
+ sidekiq (>= 3.3.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ appraisal (2.4.1)
12
+ bundler
13
+ rake
14
+ thor (>= 0.14.0)
15
+ ast (2.4.2)
16
+ byebug (11.1.3)
17
+ celluloid (0.18.0)
18
+ timers (~> 4)
19
+ coderay (1.1.3)
20
+ concurrent-ruby (1.1.9)
21
+ connection_pool (2.2.5)
22
+ diff-lcs (1.5.0)
23
+ json (2.6.1)
24
+ method_source (1.0.0)
25
+ mustermann (1.1.1)
26
+ ruby2_keywords (~> 0.0.1)
27
+ parallel (1.21.0)
28
+ parser (3.1.1.0)
29
+ ast (~> 2.4.1)
30
+ pry (0.13.1)
31
+ coderay (~> 1.1)
32
+ method_source (~> 1.0)
33
+ pry-byebug (3.9.0)
34
+ byebug (~> 11.0)
35
+ pry (~> 0.13.0)
36
+ rack (2.2.3)
37
+ rack-protection (2.2.0)
38
+ rack
39
+ rack-test (1.1.0)
40
+ rack (>= 1.0, < 3)
41
+ rainbow (3.1.1)
42
+ rake (13.0.6)
43
+ redis (3.3.5)
44
+ redis-namespace (1.6.0)
45
+ redis (>= 3.0.4)
46
+ regexp_parser (2.2.1)
47
+ rexml (3.2.5)
48
+ rspec (3.11.0)
49
+ rspec-core (~> 3.11.0)
50
+ rspec-expectations (~> 3.11.0)
51
+ rspec-mocks (~> 3.11.0)
52
+ rspec-core (3.11.0)
53
+ rspec-support (~> 3.11.0)
54
+ rspec-expectations (3.11.0)
55
+ diff-lcs (>= 1.2.0, < 2.0)
56
+ rspec-support (~> 3.11.0)
57
+ rspec-mocks (3.11.0)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.11.0)
60
+ rspec-support (3.11.0)
61
+ rubocop (1.26.0)
62
+ parallel (~> 1.10)
63
+ parser (>= 3.1.0.0)
64
+ rainbow (>= 2.2.2, < 4.0)
65
+ regexp_parser (>= 1.8, < 3.0)
66
+ rexml
67
+ rubocop-ast (>= 1.16.0, < 2.0)
68
+ ruby-progressbar (~> 1.7)
69
+ unicode-display_width (>= 1.4.0, < 3.0)
70
+ rubocop-ast (1.16.0)
71
+ parser (>= 3.1.1.0)
72
+ rubocop-performance (1.13.3)
73
+ rubocop (>= 1.7.0, < 2.0)
74
+ rubocop-ast (>= 0.4.0)
75
+ rubocop-rake (0.6.0)
76
+ rubocop (~> 1.0)
77
+ rubocop-rspec (2.9.0)
78
+ rubocop (~> 1.19)
79
+ ruby-progressbar (1.11.0)
80
+ ruby2_keywords (0.0.5)
81
+ sidekiq (3.3.1)
82
+ celluloid (>= 0.16.0)
83
+ connection_pool (>= 2.1.1)
84
+ json
85
+ redis (>= 3.0.6)
86
+ redis-namespace (>= 1.3.1)
87
+ sinatra (2.2.0)
88
+ mustermann (~> 1.0)
89
+ rack (~> 2.2)
90
+ rack-protection (= 2.2.0)
91
+ tilt (~> 2.0)
92
+ slim (4.1.0)
93
+ temple (>= 0.7.6, < 0.9)
94
+ tilt (>= 2.0.6, < 2.1)
95
+ temple (0.8.2)
96
+ thor (1.2.1)
97
+ tilt (2.0.10)
98
+ timecop (0.9.5)
99
+ timers (4.3.3)
100
+ unicode-display_width (2.1.0)
101
+
102
+ PLATFORMS
103
+ ruby
104
+
105
+ DEPENDENCIES
106
+ appraisal (~> 2.2)
107
+ bundler (~> 2.1)
108
+ concurrent-ruby
109
+ pry-byebug (~> 3.6)
110
+ rack-test (~> 1.1)
111
+ rake (~> 13.0)
112
+ redis (~> 3.3)
113
+ redis-namespace (< 1.7.0)
114
+ rspec (~> 3.0)
115
+ rubocop (~> 1.22)
116
+ rubocop-performance (~> 1.12)
117
+ rubocop-rake (~> 0.6)
118
+ rubocop-rspec (~> 2.6)
119
+ sidekiq (= 3.3.1)
120
+ sidekiq-prometheus-exporter!
121
+ sinatra
122
+ slim
123
+ timecop (~> 0.9)
124
+
125
+ BUNDLED WITH
126
+ 2.3.7
@@ -0,0 +1,141 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.17)
5
+ rack (>= 1.6.0)
6
+ sidekiq (>= 3.3.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ appraisal (2.4.1)
12
+ bundler
13
+ rake
14
+ thor (>= 0.14.0)
15
+ ast (2.4.2)
16
+ byebug (11.1.3)
17
+ celluloid (0.17.4)
18
+ celluloid-essentials
19
+ celluloid-extras
20
+ celluloid-fsm
21
+ celluloid-pool
22
+ celluloid-supervision
23
+ timers (>= 4.1.1)
24
+ celluloid-essentials (0.20.5)
25
+ timers (>= 4.1.1)
26
+ celluloid-extras (0.20.5)
27
+ timers (>= 4.1.1)
28
+ celluloid-fsm (0.20.5)
29
+ timers (>= 4.1.1)
30
+ celluloid-pool (0.20.5)
31
+ timers (>= 4.1.1)
32
+ celluloid-supervision (0.20.6)
33
+ timers (>= 4.1.1)
34
+ coderay (1.1.3)
35
+ concurrent-ruby (1.1.9)
36
+ connection_pool (2.2.5)
37
+ diff-lcs (1.5.0)
38
+ json (1.8.6)
39
+ method_source (1.0.0)
40
+ mustermann (1.1.1)
41
+ ruby2_keywords (~> 0.0.1)
42
+ parallel (1.21.0)
43
+ parser (3.1.1.0)
44
+ ast (~> 2.4.1)
45
+ pry (0.13.1)
46
+ coderay (~> 1.1)
47
+ method_source (~> 1.0)
48
+ pry-byebug (3.9.0)
49
+ byebug (~> 11.0)
50
+ pry (~> 0.13.0)
51
+ rack (2.2.3)
52
+ rack-protection (2.2.0)
53
+ rack
54
+ rack-test (1.1.0)
55
+ rack (>= 1.0, < 3)
56
+ rainbow (3.1.1)
57
+ rake (13.0.6)
58
+ redis (3.3.5)
59
+ redis-namespace (1.6.0)
60
+ redis (>= 3.0.4)
61
+ regexp_parser (2.2.1)
62
+ rexml (3.2.5)
63
+ rspec (3.11.0)
64
+ rspec-core (~> 3.11.0)
65
+ rspec-expectations (~> 3.11.0)
66
+ rspec-mocks (~> 3.11.0)
67
+ rspec-core (3.11.0)
68
+ rspec-support (~> 3.11.0)
69
+ rspec-expectations (3.11.0)
70
+ diff-lcs (>= 1.2.0, < 2.0)
71
+ rspec-support (~> 3.11.0)
72
+ rspec-mocks (3.11.0)
73
+ diff-lcs (>= 1.2.0, < 2.0)
74
+ rspec-support (~> 3.11.0)
75
+ rspec-support (3.11.0)
76
+ rubocop (1.26.0)
77
+ parallel (~> 1.10)
78
+ parser (>= 3.1.0.0)
79
+ rainbow (>= 2.2.2, < 4.0)
80
+ regexp_parser (>= 1.8, < 3.0)
81
+ rexml
82
+ rubocop-ast (>= 1.16.0, < 2.0)
83
+ ruby-progressbar (~> 1.7)
84
+ unicode-display_width (>= 1.4.0, < 3.0)
85
+ rubocop-ast (1.16.0)
86
+ parser (>= 3.1.1.0)
87
+ rubocop-performance (1.13.3)
88
+ rubocop (>= 1.7.0, < 2.0)
89
+ rubocop-ast (>= 0.4.0)
90
+ rubocop-rake (0.6.0)
91
+ rubocop (~> 1.0)
92
+ rubocop-rspec (2.9.0)
93
+ rubocop (~> 1.19)
94
+ ruby-progressbar (1.11.0)
95
+ ruby2_keywords (0.0.5)
96
+ sidekiq (3.5.4)
97
+ celluloid (~> 0.17.2)
98
+ connection_pool (~> 2.2, >= 2.2.0)
99
+ json (~> 1.0)
100
+ redis (~> 3.2, >= 3.2.1)
101
+ redis-namespace (~> 1.5, >= 1.5.2)
102
+ sinatra (2.2.0)
103
+ mustermann (~> 1.0)
104
+ rack (~> 2.2)
105
+ rack-protection (= 2.2.0)
106
+ tilt (~> 2.0)
107
+ slim (4.1.0)
108
+ temple (>= 0.7.6, < 0.9)
109
+ tilt (>= 2.0.6, < 2.1)
110
+ temple (0.8.2)
111
+ thor (1.2.1)
112
+ tilt (2.0.10)
113
+ timecop (0.9.5)
114
+ timers (4.3.3)
115
+ unicode-display_width (2.1.0)
116
+
117
+ PLATFORMS
118
+ ruby
119
+
120
+ DEPENDENCIES
121
+ appraisal (~> 2.2)
122
+ bundler (~> 2.1)
123
+ concurrent-ruby
124
+ pry-byebug (~> 3.6)
125
+ rack-test (~> 1.1)
126
+ rake (~> 13.0)
127
+ redis (~> 3.3)
128
+ redis-namespace (< 1.7.0)
129
+ rspec (~> 3.0)
130
+ rubocop (~> 1.22)
131
+ rubocop-performance (~> 1.12)
132
+ rubocop-rake (~> 0.6)
133
+ rubocop-rspec (~> 2.6)
134
+ sidekiq (~> 3.0)
135
+ sidekiq-prometheus-exporter!
136
+ sinatra
137
+ slim
138
+ timecop (~> 0.9)
139
+
140
+ BUNDLED WITH
141
+ 2.3.7
@@ -0,0 +1,102 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.17)
5
+ rack (>= 1.6.0)
6
+ sidekiq (>= 3.3.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ appraisal (2.4.1)
12
+ bundler
13
+ rake
14
+ thor (>= 0.14.0)
15
+ ast (2.4.2)
16
+ byebug (11.1.3)
17
+ coderay (1.1.3)
18
+ concurrent-ruby (1.1.9)
19
+ connection_pool (2.2.5)
20
+ diff-lcs (1.5.0)
21
+ method_source (1.0.0)
22
+ parallel (1.21.0)
23
+ parser (3.1.1.0)
24
+ ast (~> 2.4.1)
25
+ pry (0.13.1)
26
+ coderay (~> 1.1)
27
+ method_source (~> 1.0)
28
+ pry-byebug (3.9.0)
29
+ byebug (~> 11.0)
30
+ pry (~> 0.13.0)
31
+ rack (2.2.3)
32
+ rack-protection (2.2.0)
33
+ rack
34
+ rack-test (1.1.0)
35
+ rack (>= 1.0, < 3)
36
+ rainbow (3.1.1)
37
+ rake (13.0.6)
38
+ redis (3.3.5)
39
+ regexp_parser (2.2.1)
40
+ rexml (3.2.5)
41
+ rspec (3.11.0)
42
+ rspec-core (~> 3.11.0)
43
+ rspec-expectations (~> 3.11.0)
44
+ rspec-mocks (~> 3.11.0)
45
+ rspec-core (3.11.0)
46
+ rspec-support (~> 3.11.0)
47
+ rspec-expectations (3.11.0)
48
+ diff-lcs (>= 1.2.0, < 2.0)
49
+ rspec-support (~> 3.11.0)
50
+ rspec-mocks (3.11.0)
51
+ diff-lcs (>= 1.2.0, < 2.0)
52
+ rspec-support (~> 3.11.0)
53
+ rspec-support (3.11.0)
54
+ rubocop (1.26.0)
55
+ parallel (~> 1.10)
56
+ parser (>= 3.1.0.0)
57
+ rainbow (>= 2.2.2, < 4.0)
58
+ regexp_parser (>= 1.8, < 3.0)
59
+ rexml
60
+ rubocop-ast (>= 1.16.0, < 2.0)
61
+ ruby-progressbar (~> 1.7)
62
+ unicode-display_width (>= 1.4.0, < 3.0)
63
+ rubocop-ast (1.16.0)
64
+ parser (>= 3.1.1.0)
65
+ rubocop-performance (1.13.3)
66
+ rubocop (>= 1.7.0, < 2.0)
67
+ rubocop-ast (>= 0.4.0)
68
+ rubocop-rake (0.6.0)
69
+ rubocop (~> 1.0)
70
+ rubocop-rspec (2.9.0)
71
+ rubocop (~> 1.19)
72
+ ruby-progressbar (1.11.0)
73
+ sidekiq (4.2.10)
74
+ concurrent-ruby (~> 1.0)
75
+ connection_pool (~> 2.2, >= 2.2.0)
76
+ rack-protection (>= 1.5.0)
77
+ redis (~> 3.2, >= 3.2.1)
78
+ thor (1.2.1)
79
+ timecop (0.9.5)
80
+ unicode-display_width (2.1.0)
81
+
82
+ PLATFORMS
83
+ ruby
84
+
85
+ DEPENDENCIES
86
+ appraisal (~> 2.2)
87
+ bundler (~> 2.1)
88
+ pry-byebug (~> 3.6)
89
+ rack-test (~> 1.1)
90
+ rake (~> 13.0)
91
+ redis (~> 3.3)
92
+ rspec (~> 3.0)
93
+ rubocop (~> 1.22)
94
+ rubocop-performance (~> 1.12)
95
+ rubocop-rake (~> 0.6)
96
+ rubocop-rspec (~> 2.6)
97
+ sidekiq (~> 4.0)
98
+ sidekiq-prometheus-exporter!
99
+ timecop (~> 0.9)
100
+
101
+ BUNDLED WITH
102
+ 2.3.7
@@ -0,0 +1,101 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.17)
5
+ rack (>= 1.6.0)
6
+ sidekiq (>= 3.3.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ appraisal (2.4.1)
12
+ bundler
13
+ rake
14
+ thor (>= 0.14.0)
15
+ ast (2.4.2)
16
+ byebug (11.1.3)
17
+ coderay (1.1.3)
18
+ connection_pool (2.2.5)
19
+ diff-lcs (1.5.0)
20
+ method_source (1.0.0)
21
+ parallel (1.21.0)
22
+ parser (3.1.1.0)
23
+ ast (~> 2.4.1)
24
+ pry (0.13.1)
25
+ coderay (~> 1.1)
26
+ method_source (~> 1.0)
27
+ pry-byebug (3.9.0)
28
+ byebug (~> 11.0)
29
+ pry (~> 0.13.0)
30
+ rack (2.2.3)
31
+ rack-protection (2.2.0)
32
+ rack
33
+ rack-test (1.1.0)
34
+ rack (>= 1.0, < 3)
35
+ rainbow (3.1.1)
36
+ rake (13.0.6)
37
+ redis (3.3.5)
38
+ regexp_parser (2.2.1)
39
+ rexml (3.2.5)
40
+ rspec (3.11.0)
41
+ rspec-core (~> 3.11.0)
42
+ rspec-expectations (~> 3.11.0)
43
+ rspec-mocks (~> 3.11.0)
44
+ rspec-core (3.11.0)
45
+ rspec-support (~> 3.11.0)
46
+ rspec-expectations (3.11.0)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.11.0)
49
+ rspec-mocks (3.11.0)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.11.0)
52
+ rspec-support (3.11.0)
53
+ rubocop (1.26.0)
54
+ parallel (~> 1.10)
55
+ parser (>= 3.1.0.0)
56
+ rainbow (>= 2.2.2, < 4.0)
57
+ regexp_parser (>= 1.8, < 3.0)
58
+ rexml
59
+ rubocop-ast (>= 1.16.0, < 2.0)
60
+ ruby-progressbar (~> 1.7)
61
+ unicode-display_width (>= 1.4.0, < 3.0)
62
+ rubocop-ast (1.16.0)
63
+ parser (>= 3.1.1.0)
64
+ rubocop-performance (1.13.3)
65
+ rubocop (>= 1.7.0, < 2.0)
66
+ rubocop-ast (>= 0.4.0)
67
+ rubocop-rake (0.6.0)
68
+ rubocop (~> 1.0)
69
+ rubocop-rspec (2.9.0)
70
+ rubocop (~> 1.19)
71
+ ruby-progressbar (1.11.0)
72
+ sidekiq (5.2.9)
73
+ connection_pool (~> 2.2, >= 2.2.2)
74
+ rack (~> 2.0)
75
+ rack-protection (>= 1.5.0)
76
+ redis (>= 3.3.5, < 4.2)
77
+ thor (1.2.1)
78
+ timecop (0.9.5)
79
+ unicode-display_width (2.1.0)
80
+
81
+ PLATFORMS
82
+ ruby
83
+
84
+ DEPENDENCIES
85
+ appraisal (~> 2.2)
86
+ bundler (~> 2.1)
87
+ pry-byebug (~> 3.6)
88
+ rack-test (~> 1.1)
89
+ rake (~> 13.0)
90
+ redis (~> 3.3)
91
+ rspec (~> 3.0)
92
+ rubocop (~> 1.22)
93
+ rubocop-performance (~> 1.12)
94
+ rubocop-rake (~> 0.6)
95
+ rubocop-rspec (~> 2.6)
96
+ sidekiq (~> 5.0)
97
+ sidekiq-prometheus-exporter!
98
+ timecop (~> 0.9)
99
+
100
+ BUNDLED WITH
101
+ 2.3.7
@@ -0,0 +1,98 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.17)
5
+ rack (>= 1.6.0)
6
+ sidekiq (>= 3.3.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ appraisal (2.4.1)
12
+ bundler
13
+ rake
14
+ thor (>= 0.14.0)
15
+ ast (2.4.2)
16
+ byebug (11.1.3)
17
+ coderay (1.1.3)
18
+ connection_pool (2.2.5)
19
+ diff-lcs (1.5.0)
20
+ method_source (1.0.0)
21
+ parallel (1.21.0)
22
+ parser (3.1.1.0)
23
+ ast (~> 2.4.1)
24
+ pry (0.13.1)
25
+ coderay (~> 1.1)
26
+ method_source (~> 1.0)
27
+ pry-byebug (3.9.0)
28
+ byebug (~> 11.0)
29
+ pry (~> 0.13.0)
30
+ rack (2.2.3)
31
+ rack-test (1.1.0)
32
+ rack (>= 1.0, < 3)
33
+ rainbow (3.1.1)
34
+ rake (13.0.6)
35
+ redis (4.6.0)
36
+ regexp_parser (2.2.1)
37
+ rexml (3.2.5)
38
+ rspec (3.11.0)
39
+ rspec-core (~> 3.11.0)
40
+ rspec-expectations (~> 3.11.0)
41
+ rspec-mocks (~> 3.11.0)
42
+ rspec-core (3.11.0)
43
+ rspec-support (~> 3.11.0)
44
+ rspec-expectations (3.11.0)
45
+ diff-lcs (>= 1.2.0, < 2.0)
46
+ rspec-support (~> 3.11.0)
47
+ rspec-mocks (3.11.0)
48
+ diff-lcs (>= 1.2.0, < 2.0)
49
+ rspec-support (~> 3.11.0)
50
+ rspec-support (3.11.0)
51
+ rubocop (1.26.0)
52
+ parallel (~> 1.10)
53
+ parser (>= 3.1.0.0)
54
+ rainbow (>= 2.2.2, < 4.0)
55
+ regexp_parser (>= 1.8, < 3.0)
56
+ rexml
57
+ rubocop-ast (>= 1.16.0, < 2.0)
58
+ ruby-progressbar (~> 1.7)
59
+ unicode-display_width (>= 1.4.0, < 3.0)
60
+ rubocop-ast (1.16.0)
61
+ parser (>= 3.1.1.0)
62
+ rubocop-performance (1.13.3)
63
+ rubocop (>= 1.7.0, < 2.0)
64
+ rubocop-ast (>= 0.4.0)
65
+ rubocop-rake (0.6.0)
66
+ rubocop (~> 1.0)
67
+ rubocop-rspec (2.9.0)
68
+ rubocop (~> 1.19)
69
+ ruby-progressbar (1.11.0)
70
+ sidekiq (6.4.1)
71
+ connection_pool (>= 2.2.2)
72
+ rack (~> 2.0)
73
+ redis (>= 4.2.0)
74
+ thor (1.2.1)
75
+ timecop (0.9.5)
76
+ unicode-display_width (2.1.0)
77
+
78
+ PLATFORMS
79
+ ruby
80
+
81
+ DEPENDENCIES
82
+ appraisal (~> 2.2)
83
+ bundler (~> 2.1)
84
+ pry-byebug (~> 3.6)
85
+ rack-test (~> 1.1)
86
+ rake (~> 13.0)
87
+ redis (~> 4.1)
88
+ rspec (~> 3.0)
89
+ rubocop (~> 1.22)
90
+ rubocop-performance (~> 1.12)
91
+ rubocop-rake (~> 0.6)
92
+ rubocop-rspec (~> 2.6)
93
+ sidekiq (~> 6.0)
94
+ sidekiq-prometheus-exporter!
95
+ timecop (~> 0.9)
96
+
97
+ BUNDLED WITH
98
+ 2.3.7