sidekiq-prometheus-exporter 0.1.12 → 0.1.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +5 -5
  2. data/.github/FUNDING.yml +12 -0
  3. data/.github/workflows/ci.yaml +68 -0
  4. data/.gitignore +3 -1
  5. data/.rubocop.yml +43 -296
  6. data/Appraisals +17 -4
  7. data/README.md +98 -50
  8. data/Rakefile +83 -0
  9. data/docker/Dockerfile +24 -0
  10. data/docker/README.md +61 -0
  11. data/docker/config.ru +41 -0
  12. data/examples/docker-compose.yml +2 -2
  13. data/examples/metrics/config.ru +2 -0
  14. data/examples/screenshot.png +0 -0
  15. data/examples/sidekiq/sidekiq.rb +2 -0
  16. data/examples/{sidekiq.json → sidekiq-dashboard.grafana-6.json} +10 -52
  17. data/examples/sidekiq-dashboard.grafana-7.json +845 -0
  18. data/gemfiles/{sidekiq_3.3.1.gemfile → sidekiq_3.3.1.Gemfile} +2 -1
  19. data/gemfiles/sidekiq_3.3.1.Gemfile.lock +125 -0
  20. data/gemfiles/{sidekiq_3.x.gemfile → sidekiq_3.x.Gemfile} +2 -1
  21. data/gemfiles/{sidekiq_3.x.gemfile.lock → sidekiq_3.x.Gemfile.lock} +63 -61
  22. data/gemfiles/{sidekiq_4.x.gemfile → sidekiq_4.x.Gemfile} +1 -1
  23. data/gemfiles/sidekiq_4.x.Gemfile.lock +101 -0
  24. data/gemfiles/{sidekiq_5.x.gemfile → sidekiq_5.x.Gemfile} +1 -1
  25. data/gemfiles/sidekiq_5.x.Gemfile.lock +100 -0
  26. data/gemfiles/sidekiq_6.x.Gemfile +8 -0
  27. data/gemfiles/sidekiq_6.x.Gemfile.lock +97 -0
  28. data/gemfiles/sidekiq_latest.Gemfile +9 -0
  29. data/gemfiles/sidekiq_latest.Gemfile.lock +113 -0
  30. data/helm/sidekiq-prometheus-exporter/.helmignore +22 -0
  31. data/helm/sidekiq-prometheus-exporter/Chart.yaml +6 -0
  32. data/helm/sidekiq-prometheus-exporter/README.md +87 -0
  33. data/helm/sidekiq-prometheus-exporter/templates/NOTES.txt +15 -0
  34. data/helm/sidekiq-prometheus-exporter/templates/_helpers.tpl +109 -0
  35. data/helm/sidekiq-prometheus-exporter/templates/clusterrole.yaml +20 -0
  36. data/helm/sidekiq-prometheus-exporter/templates/clusterrolebinding.yaml +17 -0
  37. data/helm/sidekiq-prometheus-exporter/templates/deployment.yaml +62 -0
  38. data/helm/sidekiq-prometheus-exporter/templates/service.yaml +17 -0
  39. data/helm/sidekiq-prometheus-exporter/templates/serviceaccount.yaml +9 -0
  40. data/helm/sidekiq-prometheus-exporter/templates/servicemonitor.yaml +26 -0
  41. data/helm/sidekiq-prometheus-exporter/values.yaml +135 -0
  42. data/lib/sidekiq/prometheus/exporter/standard.rb +19 -5
  43. data/lib/sidekiq/prometheus/exporter/templates/standard.erb +13 -1
  44. data/lib/sidekiq/prometheus/exporter/version.rb +1 -1
  45. data/lib/sidekiq/prometheus/exporter.rb +3 -1
  46. data/sidekiq-prometheus-exporter.gemspec +9 -7
  47. metadata +74 -41
  48. data/.codeclimate.yml +0 -16
  49. data/.travis.yml +0 -23
  50. data/gemfiles/sidekiq_3.3.1.gemfile.lock +0 -138
  51. data/gemfiles/sidekiq_4.x.gemfile.lock +0 -101
  52. data/gemfiles/sidekiq_5.x.gemfile.lock +0 -99
@@ -3,7 +3,8 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "slim"
6
- gem "redis", ">= 3.3.5"
6
+ gem "redis", "~> 3.3"
7
+ gem "redis-namespace", "< 1.7.0"
7
8
  gem "sinatra"
8
9
  gem "concurrent-ruby"
9
10
  gem "sidekiq", "= 3.3.1"
@@ -0,0 +1,125 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.15)
5
+ sidekiq (>= 3.3.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ appraisal (2.2.0)
11
+ bundler
12
+ rake
13
+ thor (>= 0.14.0)
14
+ ast (2.4.2)
15
+ byebug (10.0.2)
16
+ celluloid (0.18.0)
17
+ timers (~> 4)
18
+ coderay (1.1.2)
19
+ concurrent-ruby (1.1.6)
20
+ connection_pool (2.2.3)
21
+ diff-lcs (1.3)
22
+ json (2.5.1)
23
+ method_source (0.9.2)
24
+ mustermann (1.1.1)
25
+ ruby2_keywords (~> 0.0.1)
26
+ parallel (1.21.0)
27
+ parser (3.0.2.0)
28
+ ast (~> 2.4.1)
29
+ pry (0.12.2)
30
+ coderay (~> 1.1.0)
31
+ method_source (~> 0.9.0)
32
+ pry-byebug (3.6.0)
33
+ byebug (~> 10.0)
34
+ pry (~> 0.10)
35
+ rack (2.2.2)
36
+ rack-protection (2.0.8.1)
37
+ rack
38
+ rack-test (1.1.0)
39
+ rack (>= 1.0, < 3)
40
+ rainbow (3.0.0)
41
+ rake (13.0.1)
42
+ redis (3.3.5)
43
+ redis-namespace (1.6.0)
44
+ redis (>= 3.0.4)
45
+ regexp_parser (2.1.1)
46
+ rexml (3.2.5)
47
+ rspec (3.9.0)
48
+ rspec-core (~> 3.9.0)
49
+ rspec-expectations (~> 3.9.0)
50
+ rspec-mocks (~> 3.9.0)
51
+ rspec-core (3.9.1)
52
+ rspec-support (~> 3.9.1)
53
+ rspec-expectations (3.9.0)
54
+ diff-lcs (>= 1.2.0, < 2.0)
55
+ rspec-support (~> 3.9.0)
56
+ rspec-mocks (3.9.1)
57
+ diff-lcs (>= 1.2.0, < 2.0)
58
+ rspec-support (~> 3.9.0)
59
+ rspec-support (3.9.2)
60
+ rubocop (1.22.3)
61
+ parallel (~> 1.10)
62
+ parser (>= 3.0.0.0)
63
+ rainbow (>= 2.2.2, < 4.0)
64
+ regexp_parser (>= 1.8, < 3.0)
65
+ rexml
66
+ rubocop-ast (>= 1.12.0, < 2.0)
67
+ ruby-progressbar (~> 1.7)
68
+ unicode-display_width (>= 1.4.0, < 3.0)
69
+ rubocop-ast (1.13.0)
70
+ parser (>= 3.0.1.1)
71
+ rubocop-performance (1.12.0)
72
+ rubocop (>= 1.7.0, < 2.0)
73
+ rubocop-ast (>= 0.4.0)
74
+ rubocop-rake (0.6.0)
75
+ rubocop (~> 1.0)
76
+ rubocop-rspec (2.6.0)
77
+ rubocop (~> 1.19)
78
+ ruby-progressbar (1.11.0)
79
+ ruby2_keywords (0.0.2)
80
+ sidekiq (3.3.1)
81
+ celluloid (>= 0.16.0)
82
+ connection_pool (>= 2.1.1)
83
+ json
84
+ redis (>= 3.0.6)
85
+ redis-namespace (>= 1.3.1)
86
+ sinatra (2.0.8.1)
87
+ mustermann (~> 1.0)
88
+ rack (~> 2.0)
89
+ rack-protection (= 2.0.8.1)
90
+ tilt (~> 2.0)
91
+ slim (4.0.1)
92
+ temple (>= 0.7.6, < 0.9)
93
+ tilt (>= 2.0.6, < 2.1)
94
+ temple (0.8.2)
95
+ thor (1.0.1)
96
+ tilt (2.0.10)
97
+ timecop (0.9.1)
98
+ timers (4.3.2)
99
+ unicode-display_width (2.1.0)
100
+
101
+ PLATFORMS
102
+ ruby
103
+
104
+ DEPENDENCIES
105
+ appraisal (~> 2.2)
106
+ bundler (~> 2.1)
107
+ concurrent-ruby
108
+ pry-byebug (~> 3.6)
109
+ rack-test (~> 1.1)
110
+ rake (~> 13.0)
111
+ redis (~> 3.3)
112
+ redis-namespace (< 1.7.0)
113
+ rspec (~> 3.0)
114
+ rubocop (~> 1.22)
115
+ rubocop-performance (~> 1.12)
116
+ rubocop-rake (~> 0.6)
117
+ rubocop-rspec (~> 2.6)
118
+ sidekiq (= 3.3.1)
119
+ sidekiq-prometheus-exporter!
120
+ sinatra
121
+ slim
122
+ timecop (~> 0.9)
123
+
124
+ BUNDLED WITH
125
+ 2.2.17
@@ -3,7 +3,8 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "slim"
6
- gem "redis", ">= 3.3.5"
6
+ gem "redis", "~> 3.3"
7
+ gem "redis-namespace", "< 1.7.0"
7
8
  gem "sinatra"
8
9
  gem "concurrent-ruby"
9
10
  gem "sidekiq", "~> 3.0"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- sidekiq-prometheus-exporter (0.1.12)
4
+ sidekiq-prometheus-exporter (0.1.15)
5
5
  sidekiq (>= 3.3.1)
6
6
 
7
7
  GEM
@@ -11,9 +11,9 @@ GEM
11
11
  bundler
12
12
  rake
13
13
  thor (>= 0.14.0)
14
- ast (2.4.0)
14
+ ast (2.4.2)
15
15
  byebug (10.0.2)
16
- celluloid (0.17.3)
16
+ celluloid (0.17.4)
17
17
  celluloid-essentials
18
18
  celluloid-extras
19
19
  celluloid-fsm
@@ -30,104 +30,106 @@ GEM
30
30
  timers (>= 4.1.1)
31
31
  celluloid-supervision (0.20.6)
32
32
  timers (>= 4.1.1)
33
- codeclimate-test-reporter (1.0.8)
34
- simplecov (<= 0.13)
35
33
  coderay (1.1.2)
36
- concurrent-ruby (1.0.5)
37
- connection_pool (2.2.2)
34
+ concurrent-ruby (1.1.6)
35
+ connection_pool (2.2.3)
38
36
  diff-lcs (1.3)
39
- docile (1.1.5)
40
- hitimes (1.3.0)
41
- jaro_winkler (1.5.1)
42
37
  json (1.8.6)
43
- method_source (0.9.0)
44
- mustermann (1.0.3)
45
- parallel (1.12.1)
46
- parser (2.5.1.2)
47
- ast (~> 2.4.0)
48
- powerpack (0.1.2)
49
- pry (0.11.3)
38
+ method_source (0.9.2)
39
+ mustermann (1.1.1)
40
+ ruby2_keywords (~> 0.0.1)
41
+ parallel (1.21.0)
42
+ parser (3.0.2.0)
43
+ ast (~> 2.4.1)
44
+ pry (0.12.2)
50
45
  coderay (~> 1.1.0)
51
46
  method_source (~> 0.9.0)
52
47
  pry-byebug (3.6.0)
53
48
  byebug (~> 10.0)
54
49
  pry (~> 0.10)
55
- rack (2.0.5)
56
- rack-protection (2.0.4)
50
+ rack (2.2.2)
51
+ rack-protection (2.0.8.1)
57
52
  rack
58
- rack-test (0.8.3)
53
+ rack-test (1.1.0)
59
54
  rack (>= 1.0, < 3)
60
55
  rainbow (3.0.0)
61
- rake (10.5.0)
56
+ rake (13.0.1)
62
57
  redis (3.3.5)
63
58
  redis-namespace (1.6.0)
64
59
  redis (>= 3.0.4)
65
- rspec (3.8.0)
66
- rspec-core (~> 3.8.0)
67
- rspec-expectations (~> 3.8.0)
68
- rspec-mocks (~> 3.8.0)
69
- rspec-core (3.8.0)
70
- rspec-support (~> 3.8.0)
71
- rspec-expectations (3.8.1)
60
+ regexp_parser (2.1.1)
61
+ rexml (3.2.5)
62
+ rspec (3.9.0)
63
+ rspec-core (~> 3.9.0)
64
+ rspec-expectations (~> 3.9.0)
65
+ rspec-mocks (~> 3.9.0)
66
+ rspec-core (3.9.1)
67
+ rspec-support (~> 3.9.1)
68
+ rspec-expectations (3.9.0)
72
69
  diff-lcs (>= 1.2.0, < 2.0)
73
- rspec-support (~> 3.8.0)
74
- rspec-mocks (3.8.0)
70
+ rspec-support (~> 3.9.0)
71
+ rspec-mocks (3.9.1)
75
72
  diff-lcs (>= 1.2.0, < 2.0)
76
- rspec-support (~> 3.8.0)
77
- rspec-support (3.8.0)
78
- rubocop (0.59.2)
79
- jaro_winkler (~> 1.5.1)
73
+ rspec-support (~> 3.9.0)
74
+ rspec-support (3.9.2)
75
+ rubocop (1.22.3)
80
76
  parallel (~> 1.10)
81
- parser (>= 2.5, != 2.5.1.1)
82
- powerpack (~> 0.1)
77
+ parser (>= 3.0.0.0)
83
78
  rainbow (>= 2.2.2, < 4.0)
79
+ regexp_parser (>= 1.8, < 3.0)
80
+ rexml
81
+ rubocop-ast (>= 1.12.0, < 2.0)
84
82
  ruby-progressbar (~> 1.7)
85
- unicode-display_width (~> 1.0, >= 1.0.1)
86
- rubocop-rspec (1.28.0)
87
- rubocop (>= 0.58.0)
88
- ruby-progressbar (1.10.0)
83
+ unicode-display_width (>= 1.4.0, < 3.0)
84
+ rubocop-ast (1.13.0)
85
+ parser (>= 3.0.1.1)
86
+ rubocop-performance (1.12.0)
87
+ rubocop (>= 1.7.0, < 2.0)
88
+ rubocop-ast (>= 0.4.0)
89
+ rubocop-rake (0.6.0)
90
+ rubocop (~> 1.0)
91
+ rubocop-rspec (2.6.0)
92
+ rubocop (~> 1.19)
93
+ ruby-progressbar (1.11.0)
94
+ ruby2_keywords (0.0.2)
89
95
  sidekiq (3.5.4)
90
96
  celluloid (~> 0.17.2)
91
97
  connection_pool (~> 2.2, >= 2.2.0)
92
98
  json (~> 1.0)
93
99
  redis (~> 3.2, >= 3.2.1)
94
100
  redis-namespace (~> 1.5, >= 1.5.2)
95
- simplecov (0.13.0)
96
- docile (~> 1.1.0)
97
- json (>= 1.8, < 3)
98
- simplecov-html (~> 0.10.0)
99
- simplecov-html (0.10.2)
100
- sinatra (2.0.4)
101
+ sinatra (2.0.8.1)
101
102
  mustermann (~> 1.0)
102
103
  rack (~> 2.0)
103
- rack-protection (= 2.0.4)
104
+ rack-protection (= 2.0.8.1)
104
105
  tilt (~> 2.0)
105
106
  slim (4.0.1)
106
107
  temple (>= 0.7.6, < 0.9)
107
108
  tilt (>= 2.0.6, < 2.1)
108
- temple (0.8.0)
109
- thor (0.20.0)
110
- tilt (2.0.8)
109
+ temple (0.8.2)
110
+ thor (1.0.1)
111
+ tilt (2.0.10)
111
112
  timecop (0.9.1)
112
- timers (4.1.2)
113
- hitimes
114
- unicode-display_width (1.4.0)
113
+ timers (4.3.2)
114
+ unicode-display_width (2.1.0)
115
115
 
116
116
  PLATFORMS
117
117
  ruby
118
118
 
119
119
  DEPENDENCIES
120
120
  appraisal (~> 2.2)
121
- bundler (~> 1.16)
122
- codeclimate-test-reporter (~> 1.0)
121
+ bundler (~> 2.1)
123
122
  concurrent-ruby
124
123
  pry-byebug (~> 3.6)
125
- rack-test (~> 0.8)
126
- rake (~> 10.0)
127
- redis (>= 3.3.5)
124
+ rack-test (~> 1.1)
125
+ rake (~> 13.0)
126
+ redis (~> 3.3)
127
+ redis-namespace (< 1.7.0)
128
128
  rspec (~> 3.0)
129
- rubocop (~> 0.58)
130
- rubocop-rspec (~> 1.28.0)
129
+ rubocop (~> 1.22)
130
+ rubocop-performance (~> 1.12)
131
+ rubocop-rake (~> 0.6)
132
+ rubocop-rspec (~> 2.6)
131
133
  sidekiq (~> 3.0)
132
134
  sidekiq-prometheus-exporter!
133
135
  sinatra
@@ -135,4 +137,4 @@ DEPENDENCIES
135
137
  timecop (~> 0.9)
136
138
 
137
139
  BUNDLED WITH
138
- 1.16.5
140
+ 2.2.17
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "redis", ">= 3.3.5"
5
+ gem "redis", "~> 3.3"
6
6
  gem "sidekiq", "~> 4.0"
7
7
 
8
8
  gemspec path: "../"
@@ -0,0 +1,101 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.15)
5
+ sidekiq (>= 3.3.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ appraisal (2.2.0)
11
+ bundler
12
+ rake
13
+ thor (>= 0.14.0)
14
+ ast (2.4.2)
15
+ byebug (10.0.2)
16
+ coderay (1.1.2)
17
+ concurrent-ruby (1.1.8)
18
+ connection_pool (2.2.3)
19
+ diff-lcs (1.3)
20
+ method_source (0.9.2)
21
+ parallel (1.21.0)
22
+ parser (3.0.2.0)
23
+ ast (~> 2.4.1)
24
+ pry (0.12.2)
25
+ coderay (~> 1.1.0)
26
+ method_source (~> 0.9.0)
27
+ pry-byebug (3.6.0)
28
+ byebug (~> 10.0)
29
+ pry (~> 0.10)
30
+ rack (2.2.3)
31
+ rack-protection (2.1.0)
32
+ rack
33
+ rack-test (1.1.0)
34
+ rack (>= 1.0, < 3)
35
+ rainbow (3.0.0)
36
+ rake (13.0.1)
37
+ redis (3.3.5)
38
+ regexp_parser (2.1.1)
39
+ rexml (3.2.5)
40
+ rspec (3.9.0)
41
+ rspec-core (~> 3.9.0)
42
+ rspec-expectations (~> 3.9.0)
43
+ rspec-mocks (~> 3.9.0)
44
+ rspec-core (3.9.1)
45
+ rspec-support (~> 3.9.1)
46
+ rspec-expectations (3.9.0)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.9.0)
49
+ rspec-mocks (3.9.1)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.9.0)
52
+ rspec-support (3.9.2)
53
+ rubocop (1.22.3)
54
+ parallel (~> 1.10)
55
+ parser (>= 3.0.0.0)
56
+ rainbow (>= 2.2.2, < 4.0)
57
+ regexp_parser (>= 1.8, < 3.0)
58
+ rexml
59
+ rubocop-ast (>= 1.12.0, < 2.0)
60
+ ruby-progressbar (~> 1.7)
61
+ unicode-display_width (>= 1.4.0, < 3.0)
62
+ rubocop-ast (1.13.0)
63
+ parser (>= 3.0.1.1)
64
+ rubocop-performance (1.12.0)
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.6.0)
70
+ rubocop (~> 1.19)
71
+ ruby-progressbar (1.11.0)
72
+ sidekiq (4.2.10)
73
+ concurrent-ruby (~> 1.0)
74
+ connection_pool (~> 2.2, >= 2.2.0)
75
+ rack-protection (>= 1.5.0)
76
+ redis (~> 3.2, >= 3.2.1)
77
+ thor (1.0.1)
78
+ timecop (0.9.1)
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 (~> 4.0)
97
+ sidekiq-prometheus-exporter!
98
+ timecop (~> 0.9)
99
+
100
+ BUNDLED WITH
101
+ 2.2.17
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "redis", ">= 3.3.5"
5
+ gem "redis", "~> 3.3"
6
6
  gem "sidekiq", "~> 5.0"
7
7
 
8
8
  gemspec path: "../"
@@ -0,0 +1,100 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.15)
5
+ sidekiq (>= 3.3.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ appraisal (2.2.0)
11
+ bundler
12
+ rake
13
+ thor (>= 0.14.0)
14
+ ast (2.4.2)
15
+ byebug (10.0.2)
16
+ coderay (1.1.2)
17
+ connection_pool (2.2.3)
18
+ diff-lcs (1.3)
19
+ method_source (0.9.2)
20
+ parallel (1.21.0)
21
+ parser (3.0.2.0)
22
+ ast (~> 2.4.1)
23
+ pry (0.12.2)
24
+ coderay (~> 1.1.0)
25
+ method_source (~> 0.9.0)
26
+ pry-byebug (3.6.0)
27
+ byebug (~> 10.0)
28
+ pry (~> 0.10)
29
+ rack (2.2.3)
30
+ rack-protection (2.1.0)
31
+ rack
32
+ rack-test (1.1.0)
33
+ rack (>= 1.0, < 3)
34
+ rainbow (3.0.0)
35
+ rake (13.0.1)
36
+ redis (3.3.5)
37
+ regexp_parser (2.1.1)
38
+ rexml (3.2.5)
39
+ rspec (3.9.0)
40
+ rspec-core (~> 3.9.0)
41
+ rspec-expectations (~> 3.9.0)
42
+ rspec-mocks (~> 3.9.0)
43
+ rspec-core (3.9.1)
44
+ rspec-support (~> 3.9.1)
45
+ rspec-expectations (3.9.0)
46
+ diff-lcs (>= 1.2.0, < 2.0)
47
+ rspec-support (~> 3.9.0)
48
+ rspec-mocks (3.9.1)
49
+ diff-lcs (>= 1.2.0, < 2.0)
50
+ rspec-support (~> 3.9.0)
51
+ rspec-support (3.9.2)
52
+ rubocop (1.22.3)
53
+ parallel (~> 1.10)
54
+ parser (>= 3.0.0.0)
55
+ rainbow (>= 2.2.2, < 4.0)
56
+ regexp_parser (>= 1.8, < 3.0)
57
+ rexml
58
+ rubocop-ast (>= 1.12.0, < 2.0)
59
+ ruby-progressbar (~> 1.7)
60
+ unicode-display_width (>= 1.4.0, < 3.0)
61
+ rubocop-ast (1.13.0)
62
+ parser (>= 3.0.1.1)
63
+ rubocop-performance (1.12.0)
64
+ rubocop (>= 1.7.0, < 2.0)
65
+ rubocop-ast (>= 0.4.0)
66
+ rubocop-rake (0.6.0)
67
+ rubocop (~> 1.0)
68
+ rubocop-rspec (2.6.0)
69
+ rubocop (~> 1.19)
70
+ ruby-progressbar (1.11.0)
71
+ sidekiq (5.2.9)
72
+ connection_pool (~> 2.2, >= 2.2.2)
73
+ rack (~> 2.0)
74
+ rack-protection (>= 1.5.0)
75
+ redis (>= 3.3.5, < 4.2)
76
+ thor (1.0.1)
77
+ timecop (0.9.1)
78
+ unicode-display_width (2.1.0)
79
+
80
+ PLATFORMS
81
+ ruby
82
+
83
+ DEPENDENCIES
84
+ appraisal (~> 2.2)
85
+ bundler (~> 2.1)
86
+ pry-byebug (~> 3.6)
87
+ rack-test (~> 1.1)
88
+ rake (~> 13.0)
89
+ redis (~> 3.3)
90
+ rspec (~> 3.0)
91
+ rubocop (~> 1.22)
92
+ rubocop-performance (~> 1.12)
93
+ rubocop-rake (~> 0.6)
94
+ rubocop-rspec (~> 2.6)
95
+ sidekiq (~> 5.0)
96
+ sidekiq-prometheus-exporter!
97
+ timecop (~> 0.9)
98
+
99
+ BUNDLED WITH
100
+ 2.2.17
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "redis", "~> 4.1"
6
+ gem "sidekiq", "~> 6.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,97 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sidekiq-prometheus-exporter (0.1.15)
5
+ sidekiq (>= 3.3.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ appraisal (2.2.0)
11
+ bundler
12
+ rake
13
+ thor (>= 0.14.0)
14
+ ast (2.4.2)
15
+ byebug (10.0.2)
16
+ coderay (1.1.2)
17
+ connection_pool (2.2.3)
18
+ diff-lcs (1.3)
19
+ method_source (0.9.2)
20
+ parallel (1.21.0)
21
+ parser (3.0.2.0)
22
+ ast (~> 2.4.1)
23
+ pry (0.12.2)
24
+ coderay (~> 1.1.0)
25
+ method_source (~> 0.9.0)
26
+ pry-byebug (3.6.0)
27
+ byebug (~> 10.0)
28
+ pry (~> 0.10)
29
+ rack (2.2.3)
30
+ rack-test (1.1.0)
31
+ rack (>= 1.0, < 3)
32
+ rainbow (3.0.0)
33
+ rake (13.0.1)
34
+ redis (4.2.5)
35
+ regexp_parser (2.1.1)
36
+ rexml (3.2.5)
37
+ rspec (3.9.0)
38
+ rspec-core (~> 3.9.0)
39
+ rspec-expectations (~> 3.9.0)
40
+ rspec-mocks (~> 3.9.0)
41
+ rspec-core (3.9.1)
42
+ rspec-support (~> 3.9.1)
43
+ rspec-expectations (3.9.0)
44
+ diff-lcs (>= 1.2.0, < 2.0)
45
+ rspec-support (~> 3.9.0)
46
+ rspec-mocks (3.9.1)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.9.0)
49
+ rspec-support (3.9.2)
50
+ rubocop (1.22.3)
51
+ parallel (~> 1.10)
52
+ parser (>= 3.0.0.0)
53
+ rainbow (>= 2.2.2, < 4.0)
54
+ regexp_parser (>= 1.8, < 3.0)
55
+ rexml
56
+ rubocop-ast (>= 1.12.0, < 2.0)
57
+ ruby-progressbar (~> 1.7)
58
+ unicode-display_width (>= 1.4.0, < 3.0)
59
+ rubocop-ast (1.13.0)
60
+ parser (>= 3.0.1.1)
61
+ rubocop-performance (1.12.0)
62
+ rubocop (>= 1.7.0, < 2.0)
63
+ rubocop-ast (>= 0.4.0)
64
+ rubocop-rake (0.6.0)
65
+ rubocop (~> 1.0)
66
+ rubocop-rspec (2.6.0)
67
+ rubocop (~> 1.19)
68
+ ruby-progressbar (1.11.0)
69
+ sidekiq (6.1.3)
70
+ connection_pool (>= 2.2.2)
71
+ rack (~> 2.0)
72
+ redis (>= 4.2.0)
73
+ thor (1.0.1)
74
+ timecop (0.9.1)
75
+ unicode-display_width (2.1.0)
76
+
77
+ PLATFORMS
78
+ ruby
79
+
80
+ DEPENDENCIES
81
+ appraisal (~> 2.2)
82
+ bundler (~> 2.1)
83
+ pry-byebug (~> 3.6)
84
+ rack-test (~> 1.1)
85
+ rake (~> 13.0)
86
+ redis (~> 4.1)
87
+ rspec (~> 3.0)
88
+ rubocop (~> 1.22)
89
+ rubocop-performance (~> 1.12)
90
+ rubocop-rake (~> 0.6)
91
+ rubocop-rspec (~> 2.6)
92
+ sidekiq (~> 6.0)
93
+ sidekiq-prometheus-exporter!
94
+ timecop (~> 0.9)
95
+
96
+ BUNDLED WITH
97
+ 2.2.17
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rack", ">= 2", git: "https://github.com/rack/rack"
6
+ gem "redis", ">= 4", git: "https://github.com/redis/redis-rb"
7
+ gem "sidekiq", ">= 6", git: "https://github.com/mperham/sidekiq"
8
+
9
+ gemspec path: "../"