sidekiq-prometheus-exporter 0.1.15 → 0.1.16

Sign up to get free protection for your applications and to get access to all the features.
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')
@@ -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
 
@@ -11,25 +11,21 @@ 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
16
  celluloid (0.18.0)
17
17
  timers (~> 4)
18
- codeclimate-test-reporter (1.0.9)
19
- simplecov (<= 0.13)
20
18
  coderay (1.1.2)
21
19
  concurrent-ruby (1.1.6)
22
20
  connection_pool (2.2.3)
23
21
  diff-lcs (1.3)
24
- docile (1.1.5)
25
- jaro_winkler (1.5.4)
26
22
  json (2.5.1)
27
23
  method_source (0.9.2)
28
24
  mustermann (1.1.1)
29
25
  ruby2_keywords (~> 0.0.1)
30
- parallel (1.19.1)
31
- parser (2.7.0.4)
32
- ast (~> 2.4.0)
26
+ parallel (1.21.0)
27
+ parser (3.0.2.0)
28
+ ast (~> 2.4.1)
33
29
  pry (0.12.2)
34
30
  coderay (~> 1.1.0)
35
31
  method_source (~> 0.9.0)
@@ -46,7 +42,8 @@ GEM
46
42
  redis (3.3.5)
47
43
  redis-namespace (1.6.0)
48
44
  redis (>= 3.0.4)
49
- rexml (3.2.4)
45
+ regexp_parser (2.1.1)
46
+ rexml (3.2.5)
50
47
  rspec (3.9.0)
51
48
  rspec-core (~> 3.9.0)
52
49
  rspec-expectations (~> 3.9.0)
@@ -60,17 +57,25 @@ GEM
60
57
  diff-lcs (>= 1.2.0, < 2.0)
61
58
  rspec-support (~> 3.9.0)
62
59
  rspec-support (3.9.2)
63
- rubocop (0.80.1)
64
- jaro_winkler (~> 1.5.1)
60
+ rubocop (1.22.3)
65
61
  parallel (~> 1.10)
66
- parser (>= 2.7.0.1)
62
+ parser (>= 3.0.0.0)
67
63
  rainbow (>= 2.2.2, < 4.0)
64
+ regexp_parser (>= 1.8, < 3.0)
68
65
  rexml
66
+ rubocop-ast (>= 1.12.0, < 2.0)
69
67
  ruby-progressbar (~> 1.7)
70
- unicode-display_width (>= 1.4.0, < 1.7)
71
- rubocop-rspec (1.28.0)
72
- rubocop (>= 0.58.0)
73
- ruby-progressbar (1.10.1)
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)
74
79
  ruby2_keywords (0.0.2)
75
80
  sidekiq (3.3.1)
76
81
  celluloid (>= 0.16.0)
@@ -78,11 +83,6 @@ GEM
78
83
  json
79
84
  redis (>= 3.0.6)
80
85
  redis-namespace (>= 1.3.1)
81
- simplecov (0.13.0)
82
- docile (~> 1.1.0)
83
- json (>= 1.8, < 3)
84
- simplecov-html (~> 0.10.0)
85
- simplecov-html (0.10.2)
86
86
  sinatra (2.0.8.1)
87
87
  mustermann (~> 1.0)
88
88
  rack (~> 2.0)
@@ -96,7 +96,7 @@ GEM
96
96
  tilt (2.0.10)
97
97
  timecop (0.9.1)
98
98
  timers (4.3.2)
99
- unicode-display_width (1.6.1)
99
+ unicode-display_width (2.1.0)
100
100
 
101
101
  PLATFORMS
102
102
  ruby
@@ -104,7 +104,6 @@ PLATFORMS
104
104
  DEPENDENCIES
105
105
  appraisal (~> 2.2)
106
106
  bundler (~> 2.1)
107
- codeclimate-test-reporter (~> 1.0)
108
107
  concurrent-ruby
109
108
  pry-byebug (~> 3.6)
110
109
  rack-test (~> 1.1)
@@ -112,8 +111,10 @@ DEPENDENCIES
112
111
  redis (~> 3.3)
113
112
  redis-namespace (< 1.7.0)
114
113
  rspec (~> 3.0)
115
- rubocop (~> 0.58)
116
- rubocop-rspec (~> 1.28.0)
114
+ rubocop (~> 1.22)
115
+ rubocop-performance (~> 1.12)
116
+ rubocop-rake (~> 0.6)
117
+ rubocop-rspec (~> 2.6)
117
118
  sidekiq (= 3.3.1)
118
119
  sidekiq-prometheus-exporter!
119
120
  sinatra
@@ -121,4 +122,4 @@ DEPENDENCIES
121
122
  timecop (~> 0.9)
122
123
 
123
124
  BUNDLED WITH
124
- 2.1.4
125
+ 2.2.17
@@ -11,7 +11,7 @@ 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
16
  celluloid (0.17.4)
17
17
  celluloid-essentials
@@ -30,21 +30,17 @@ 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.9)
34
- simplecov (<= 0.13)
35
33
  coderay (1.1.2)
36
34
  concurrent-ruby (1.1.6)
37
35
  connection_pool (2.2.3)
38
36
  diff-lcs (1.3)
39
- docile (1.1.5)
40
- jaro_winkler (1.5.4)
41
37
  json (1.8.6)
42
38
  method_source (0.9.2)
43
39
  mustermann (1.1.1)
44
40
  ruby2_keywords (~> 0.0.1)
45
- parallel (1.19.1)
46
- parser (2.7.0.4)
47
- ast (~> 2.4.0)
41
+ parallel (1.21.0)
42
+ parser (3.0.2.0)
43
+ ast (~> 2.4.1)
48
44
  pry (0.12.2)
49
45
  coderay (~> 1.1.0)
50
46
  method_source (~> 0.9.0)
@@ -61,7 +57,8 @@ GEM
61
57
  redis (3.3.5)
62
58
  redis-namespace (1.6.0)
63
59
  redis (>= 3.0.4)
64
- rexml (3.2.4)
60
+ regexp_parser (2.1.1)
61
+ rexml (3.2.5)
65
62
  rspec (3.9.0)
66
63
  rspec-core (~> 3.9.0)
67
64
  rspec-expectations (~> 3.9.0)
@@ -75,17 +72,25 @@ GEM
75
72
  diff-lcs (>= 1.2.0, < 2.0)
76
73
  rspec-support (~> 3.9.0)
77
74
  rspec-support (3.9.2)
78
- rubocop (0.80.1)
79
- jaro_winkler (~> 1.5.1)
75
+ rubocop (1.22.3)
80
76
  parallel (~> 1.10)
81
- parser (>= 2.7.0.1)
77
+ parser (>= 3.0.0.0)
82
78
  rainbow (>= 2.2.2, < 4.0)
79
+ regexp_parser (>= 1.8, < 3.0)
83
80
  rexml
81
+ rubocop-ast (>= 1.12.0, < 2.0)
84
82
  ruby-progressbar (~> 1.7)
85
- unicode-display_width (>= 1.4.0, < 1.7)
86
- rubocop-rspec (1.28.0)
87
- rubocop (>= 0.58.0)
88
- ruby-progressbar (1.10.1)
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)
89
94
  ruby2_keywords (0.0.2)
90
95
  sidekiq (3.5.4)
91
96
  celluloid (~> 0.17.2)
@@ -93,11 +98,6 @@ GEM
93
98
  json (~> 1.0)
94
99
  redis (~> 3.2, >= 3.2.1)
95
100
  redis-namespace (~> 1.5, >= 1.5.2)
96
- simplecov (0.13.0)
97
- docile (~> 1.1.0)
98
- json (>= 1.8, < 3)
99
- simplecov-html (~> 0.10.0)
100
- simplecov-html (0.10.2)
101
101
  sinatra (2.0.8.1)
102
102
  mustermann (~> 1.0)
103
103
  rack (~> 2.0)
@@ -111,7 +111,7 @@ GEM
111
111
  tilt (2.0.10)
112
112
  timecop (0.9.1)
113
113
  timers (4.3.2)
114
- unicode-display_width (1.6.1)
114
+ unicode-display_width (2.1.0)
115
115
 
116
116
  PLATFORMS
117
117
  ruby
@@ -119,7 +119,6 @@ PLATFORMS
119
119
  DEPENDENCIES
120
120
  appraisal (~> 2.2)
121
121
  bundler (~> 2.1)
122
- codeclimate-test-reporter (~> 1.0)
123
122
  concurrent-ruby
124
123
  pry-byebug (~> 3.6)
125
124
  rack-test (~> 1.1)
@@ -127,8 +126,10 @@ DEPENDENCIES
127
126
  redis (~> 3.3)
128
127
  redis-namespace (< 1.7.0)
129
128
  rspec (~> 3.0)
130
- rubocop (~> 0.58)
131
- rubocop-rspec (~> 1.28.0)
129
+ rubocop (~> 1.22)
130
+ rubocop-performance (~> 1.12)
131
+ rubocop-rake (~> 0.6)
132
+ rubocop-rspec (~> 2.6)
132
133
  sidekiq (~> 3.0)
133
134
  sidekiq-prometheus-exporter!
134
135
  sinatra
@@ -136,4 +137,4 @@ DEPENDENCIES
136
137
  timecop (~> 0.9)
137
138
 
138
139
  BUNDLED WITH
139
- 2.1.4
140
+ 2.2.17
@@ -11,21 +11,16 @@ 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
- codeclimate-test-reporter (1.0.9)
17
- simplecov (<= 0.13)
18
16
  coderay (1.1.2)
19
17
  concurrent-ruby (1.1.8)
20
18
  connection_pool (2.2.3)
21
19
  diff-lcs (1.3)
22
- docile (1.1.5)
23
- jaro_winkler (1.5.4)
24
- json (2.3.0)
25
20
  method_source (0.9.2)
26
- parallel (1.19.1)
27
- parser (2.7.0.4)
28
- ast (~> 2.4.0)
21
+ parallel (1.21.0)
22
+ parser (3.0.2.0)
23
+ ast (~> 2.4.1)
29
24
  pry (0.12.2)
30
25
  coderay (~> 1.1.0)
31
26
  method_source (~> 0.9.0)
@@ -40,7 +35,8 @@ GEM
40
35
  rainbow (3.0.0)
41
36
  rake (13.0.1)
42
37
  redis (3.3.5)
43
- rexml (3.2.4)
38
+ regexp_parser (2.1.1)
39
+ rexml (3.2.5)
44
40
  rspec (3.9.0)
45
41
  rspec-core (~> 3.9.0)
46
42
  rspec-expectations (~> 3.9.0)
@@ -54,30 +50,33 @@ GEM
54
50
  diff-lcs (>= 1.2.0, < 2.0)
55
51
  rspec-support (~> 3.9.0)
56
52
  rspec-support (3.9.2)
57
- rubocop (0.80.1)
58
- jaro_winkler (~> 1.5.1)
53
+ rubocop (1.22.3)
59
54
  parallel (~> 1.10)
60
- parser (>= 2.7.0.1)
55
+ parser (>= 3.0.0.0)
61
56
  rainbow (>= 2.2.2, < 4.0)
57
+ regexp_parser (>= 1.8, < 3.0)
62
58
  rexml
59
+ rubocop-ast (>= 1.12.0, < 2.0)
63
60
  ruby-progressbar (~> 1.7)
64
- unicode-display_width (>= 1.4.0, < 1.7)
65
- rubocop-rspec (1.28.0)
66
- rubocop (>= 0.58.0)
67
- ruby-progressbar (1.10.1)
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)
68
72
  sidekiq (4.2.10)
69
73
  concurrent-ruby (~> 1.0)
70
74
  connection_pool (~> 2.2, >= 2.2.0)
71
75
  rack-protection (>= 1.5.0)
72
76
  redis (~> 3.2, >= 3.2.1)
73
- simplecov (0.13.0)
74
- docile (~> 1.1.0)
75
- json (>= 1.8, < 3)
76
- simplecov-html (~> 0.10.0)
77
- simplecov-html (0.10.2)
78
77
  thor (1.0.1)
79
78
  timecop (0.9.1)
80
- unicode-display_width (1.6.1)
79
+ unicode-display_width (2.1.0)
81
80
 
82
81
  PLATFORMS
83
82
  ruby
@@ -85,17 +84,18 @@ PLATFORMS
85
84
  DEPENDENCIES
86
85
  appraisal (~> 2.2)
87
86
  bundler (~> 2.1)
88
- codeclimate-test-reporter (~> 1.0)
89
87
  pry-byebug (~> 3.6)
90
88
  rack-test (~> 1.1)
91
89
  rake (~> 13.0)
92
90
  redis (~> 3.3)
93
91
  rspec (~> 3.0)
94
- rubocop (~> 0.58)
95
- rubocop-rspec (~> 1.28.0)
92
+ rubocop (~> 1.22)
93
+ rubocop-performance (~> 1.12)
94
+ rubocop-rake (~> 0.6)
95
+ rubocop-rspec (~> 2.6)
96
96
  sidekiq (~> 4.0)
97
97
  sidekiq-prometheus-exporter!
98
98
  timecop (~> 0.9)
99
99
 
100
100
  BUNDLED WITH
101
- 2.1.4
101
+ 2.2.17
@@ -11,20 +11,15 @@ 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
- codeclimate-test-reporter (1.0.9)
17
- simplecov (<= 0.13)
18
16
  coderay (1.1.2)
19
17
  connection_pool (2.2.3)
20
18
  diff-lcs (1.3)
21
- docile (1.1.5)
22
- jaro_winkler (1.5.4)
23
- json (2.3.0)
24
19
  method_source (0.9.2)
25
- parallel (1.19.1)
26
- parser (2.7.0.4)
27
- ast (~> 2.4.0)
20
+ parallel (1.21.0)
21
+ parser (3.0.2.0)
22
+ ast (~> 2.4.1)
28
23
  pry (0.12.2)
29
24
  coderay (~> 1.1.0)
30
25
  method_source (~> 0.9.0)
@@ -39,7 +34,8 @@ GEM
39
34
  rainbow (3.0.0)
40
35
  rake (13.0.1)
41
36
  redis (3.3.5)
42
- rexml (3.2.4)
37
+ regexp_parser (2.1.1)
38
+ rexml (3.2.5)
43
39
  rspec (3.9.0)
44
40
  rspec-core (~> 3.9.0)
45
41
  rspec-expectations (~> 3.9.0)
@@ -53,30 +49,33 @@ GEM
53
49
  diff-lcs (>= 1.2.0, < 2.0)
54
50
  rspec-support (~> 3.9.0)
55
51
  rspec-support (3.9.2)
56
- rubocop (0.80.1)
57
- jaro_winkler (~> 1.5.1)
52
+ rubocop (1.22.3)
58
53
  parallel (~> 1.10)
59
- parser (>= 2.7.0.1)
54
+ parser (>= 3.0.0.0)
60
55
  rainbow (>= 2.2.2, < 4.0)
56
+ regexp_parser (>= 1.8, < 3.0)
61
57
  rexml
58
+ rubocop-ast (>= 1.12.0, < 2.0)
62
59
  ruby-progressbar (~> 1.7)
63
- unicode-display_width (>= 1.4.0, < 1.7)
64
- rubocop-rspec (1.28.0)
65
- rubocop (>= 0.58.0)
66
- ruby-progressbar (1.10.1)
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)
67
71
  sidekiq (5.2.9)
68
72
  connection_pool (~> 2.2, >= 2.2.2)
69
73
  rack (~> 2.0)
70
74
  rack-protection (>= 1.5.0)
71
75
  redis (>= 3.3.5, < 4.2)
72
- simplecov (0.13.0)
73
- docile (~> 1.1.0)
74
- json (>= 1.8, < 3)
75
- simplecov-html (~> 0.10.0)
76
- simplecov-html (0.10.2)
77
76
  thor (1.0.1)
78
77
  timecop (0.9.1)
79
- unicode-display_width (1.6.1)
78
+ unicode-display_width (2.1.0)
80
79
 
81
80
  PLATFORMS
82
81
  ruby
@@ -84,17 +83,18 @@ PLATFORMS
84
83
  DEPENDENCIES
85
84
  appraisal (~> 2.2)
86
85
  bundler (~> 2.1)
87
- codeclimate-test-reporter (~> 1.0)
88
86
  pry-byebug (~> 3.6)
89
87
  rack-test (~> 1.1)
90
88
  rake (~> 13.0)
91
89
  redis (~> 3.3)
92
90
  rspec (~> 3.0)
93
- rubocop (~> 0.58)
94
- rubocop-rspec (~> 1.28.0)
91
+ rubocop (~> 1.22)
92
+ rubocop-performance (~> 1.12)
93
+ rubocop-rake (~> 0.6)
94
+ rubocop-rspec (~> 2.6)
95
95
  sidekiq (~> 5.0)
96
96
  sidekiq-prometheus-exporter!
97
97
  timecop (~> 0.9)
98
98
 
99
99
  BUNDLED WITH
100
- 2.1.4
100
+ 2.2.17
@@ -11,20 +11,15 @@ 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
- codeclimate-test-reporter (1.0.9)
17
- simplecov (<= 0.13)
18
16
  coderay (1.1.2)
19
17
  connection_pool (2.2.3)
20
18
  diff-lcs (1.3)
21
- docile (1.1.5)
22
- jaro_winkler (1.5.4)
23
- json (2.3.0)
24
19
  method_source (0.9.2)
25
- parallel (1.19.1)
26
- parser (2.7.0.4)
27
- ast (~> 2.4.0)
20
+ parallel (1.21.0)
21
+ parser (3.0.2.0)
22
+ ast (~> 2.4.1)
28
23
  pry (0.12.2)
29
24
  coderay (~> 1.1.0)
30
25
  method_source (~> 0.9.0)
@@ -37,7 +32,8 @@ GEM
37
32
  rainbow (3.0.0)
38
33
  rake (13.0.1)
39
34
  redis (4.2.5)
40
- rexml (3.2.4)
35
+ regexp_parser (2.1.1)
36
+ rexml (3.2.5)
41
37
  rspec (3.9.0)
42
38
  rspec-core (~> 3.9.0)
43
39
  rspec-expectations (~> 3.9.0)
@@ -51,29 +47,32 @@ GEM
51
47
  diff-lcs (>= 1.2.0, < 2.0)
52
48
  rspec-support (~> 3.9.0)
53
49
  rspec-support (3.9.2)
54
- rubocop (0.80.1)
55
- jaro_winkler (~> 1.5.1)
50
+ rubocop (1.22.3)
56
51
  parallel (~> 1.10)
57
- parser (>= 2.7.0.1)
52
+ parser (>= 3.0.0.0)
58
53
  rainbow (>= 2.2.2, < 4.0)
54
+ regexp_parser (>= 1.8, < 3.0)
59
55
  rexml
56
+ rubocop-ast (>= 1.12.0, < 2.0)
60
57
  ruby-progressbar (~> 1.7)
61
- unicode-display_width (>= 1.4.0, < 1.7)
62
- rubocop-rspec (1.28.0)
63
- rubocop (>= 0.58.0)
64
- ruby-progressbar (1.10.1)
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)
65
69
  sidekiq (6.1.3)
66
70
  connection_pool (>= 2.2.2)
67
71
  rack (~> 2.0)
68
72
  redis (>= 4.2.0)
69
- simplecov (0.13.0)
70
- docile (~> 1.1.0)
71
- json (>= 1.8, < 3)
72
- simplecov-html (~> 0.10.0)
73
- simplecov-html (0.10.2)
74
73
  thor (1.0.1)
75
74
  timecop (0.9.1)
76
- unicode-display_width (1.6.1)
75
+ unicode-display_width (2.1.0)
77
76
 
78
77
  PLATFORMS
79
78
  ruby
@@ -81,17 +80,18 @@ PLATFORMS
81
80
  DEPENDENCIES
82
81
  appraisal (~> 2.2)
83
82
  bundler (~> 2.1)
84
- codeclimate-test-reporter (~> 1.0)
85
83
  pry-byebug (~> 3.6)
86
84
  rack-test (~> 1.1)
87
85
  rake (~> 13.0)
88
86
  redis (~> 4.1)
89
87
  rspec (~> 3.0)
90
- rubocop (~> 0.58)
91
- rubocop-rspec (~> 1.28.0)
88
+ rubocop (~> 1.22)
89
+ rubocop-performance (~> 1.12)
90
+ rubocop-rake (~> 0.6)
91
+ rubocop-rspec (~> 2.6)
92
92
  sidekiq (~> 6.0)
93
93
  sidekiq-prometheus-exporter!
94
94
  timecop (~> 0.9)
95
95
 
96
96
  BUNDLED WITH
97
- 2.1.4
97
+ 2.2.17
@@ -32,20 +32,15 @@ GEM
32
32
  bundler
33
33
  rake
34
34
  thor (>= 0.14.0)
35
- ast (2.4.0)
35
+ ast (2.4.2)
36
36
  byebug (10.0.2)
37
- codeclimate-test-reporter (1.0.9)
38
- simplecov (<= 0.13)
39
37
  coderay (1.1.2)
40
38
  connection_pool (2.2.3)
41
39
  diff-lcs (1.3)
42
- docile (1.1.5)
43
- jaro_winkler (1.5.4)
44
- json (2.3.0)
45
40
  method_source (0.9.2)
46
- parallel (1.19.1)
47
- parser (2.7.0.4)
48
- ast (~> 2.4.0)
41
+ parallel (1.21.0)
42
+ parser (3.0.2.0)
43
+ ast (~> 2.4.1)
49
44
  pry (0.12.2)
50
45
  coderay (~> 1.1.0)
51
46
  method_source (~> 0.9.0)
@@ -56,7 +51,8 @@ GEM
56
51
  rack (>= 1.0, < 3)
57
52
  rainbow (3.0.0)
58
53
  rake (13.0.1)
59
- rexml (3.2.4)
54
+ regexp_parser (2.1.1)
55
+ rexml (3.2.5)
60
56
  rspec (3.9.0)
61
57
  rspec-core (~> 3.9.0)
62
58
  rspec-expectations (~> 3.9.0)
@@ -70,25 +66,28 @@ GEM
70
66
  diff-lcs (>= 1.2.0, < 2.0)
71
67
  rspec-support (~> 3.9.0)
72
68
  rspec-support (3.9.2)
73
- rubocop (0.80.1)
74
- jaro_winkler (~> 1.5.1)
69
+ rubocop (1.22.3)
75
70
  parallel (~> 1.10)
76
- parser (>= 2.7.0.1)
71
+ parser (>= 3.0.0.0)
77
72
  rainbow (>= 2.2.2, < 4.0)
73
+ regexp_parser (>= 1.8, < 3.0)
78
74
  rexml
75
+ rubocop-ast (>= 1.12.0, < 2.0)
79
76
  ruby-progressbar (~> 1.7)
80
- unicode-display_width (>= 1.4.0, < 1.7)
81
- rubocop-rspec (1.28.0)
82
- rubocop (>= 0.58.0)
83
- ruby-progressbar (1.10.1)
84
- simplecov (0.13.0)
85
- docile (~> 1.1.0)
86
- json (>= 1.8, < 3)
87
- simplecov-html (~> 0.10.0)
88
- simplecov-html (0.10.2)
77
+ unicode-display_width (>= 1.4.0, < 3.0)
78
+ rubocop-ast (1.13.0)
79
+ parser (>= 3.0.1.1)
80
+ rubocop-performance (1.12.0)
81
+ rubocop (>= 1.7.0, < 2.0)
82
+ rubocop-ast (>= 0.4.0)
83
+ rubocop-rake (0.6.0)
84
+ rubocop (~> 1.0)
85
+ rubocop-rspec (2.6.0)
86
+ rubocop (~> 1.19)
87
+ ruby-progressbar (1.11.0)
89
88
  thor (1.0.1)
90
89
  timecop (0.9.1)
91
- unicode-display_width (1.6.1)
90
+ unicode-display_width (2.1.0)
92
91
 
93
92
  PLATFORMS
94
93
  ruby
@@ -96,18 +95,19 @@ PLATFORMS
96
95
  DEPENDENCIES
97
96
  appraisal (~> 2.2)
98
97
  bundler (~> 2.1)
99
- codeclimate-test-reporter (~> 1.0)
100
98
  pry-byebug (~> 3.6)
101
99
  rack (>= 2)!
102
100
  rack-test (~> 1.1)
103
101
  rake (~> 13.0)
104
102
  redis (>= 4)!
105
103
  rspec (~> 3.0)
106
- rubocop (~> 0.58)
107
- rubocop-rspec (~> 1.28.0)
104
+ rubocop (~> 1.22)
105
+ rubocop-performance (~> 1.12)
106
+ rubocop-rake (~> 0.6)
107
+ rubocop-rspec (~> 2.6)
108
108
  sidekiq (>= 6)!
109
109
  sidekiq-prometheus-exporter!
110
110
  timecop (~> 0.9)
111
111
 
112
112
  BUNDLED WITH
113
- 2.1.4
113
+ 2.2.17
@@ -3,4 +3,4 @@ apiVersion: v1
3
3
  appVersion: 0.1.15
4
4
  description: A Helm chart to deploy sidekiq-prometheus-exporter in Kubernetes
5
5
  name: sidekiq-prometheus-exporter
6
- version: 0.1.15
6
+ version: 0.1.15-3