sidekiq-prometheus-exporter 0.1.17 → 0.2.0

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: 5d49eee804952e326619e0c38a486343c277249db897b8c2ef214d5f449efbbc
4
- data.tar.gz: 529fadfaf195e9415d2344397acf8e73fd171022df02fbdbd13886e8d6c5230e
3
+ metadata.gz: 420aff1e44de33405644188fadfe166fe8b8b1f24994ad0035bc2f350e968718
4
+ data.tar.gz: ec7e9d8fba8d9f56151a7c759ccc55202f8a5ef7a776cf5ce273aea834cea60e
5
5
  SHA512:
6
- metadata.gz: dd43a43f2d0f8dea5b58a64c42387cb2b9973021eb912d54ad24375af64f33f2252a3b27b029ef3008216d8c5908c7ea2259c0cbd06e7aac0c7120f4e2423695
7
- data.tar.gz: 815ca578012da37e72d4293fef12adb228ad602e9ad33664588c1269f0cd6a8602c31e4456287eac180fead1a7cadf135f805a823a3ff2f0cad1e9971c75fa24
6
+ metadata.gz: 6fba09943f7bbb9c886ee10ad36ea9647e26411bbf378676ae99cdfc26b3adb9e41c9bf346dd496c3b087f119851267fa2a25d997b79117fcd9b88b9524ec8f4
7
+ data.tar.gz: 8a2dbb2c61076fc58913f6c83eb27be187279d113fc1c1112eb0fbb051dbf1a56b5ce521e267afccda87aa7a9bfbde86d32ab3cd877f4e9bcbdadf761556d7d7
@@ -5,6 +5,9 @@ on:
5
5
  branches: ["master"]
6
6
  pull_request:
7
7
  branches: ["master"]
8
+ schedule:
9
+ # Run the workflow once per month
10
+ - cron: "0 0 1 * *"
8
11
  jobs:
9
12
  rubocop:
10
13
  name: Rubocop
@@ -13,11 +16,10 @@ jobs:
13
16
  - uses: actions/checkout@v2
14
17
  - uses: ruby/setup-ruby@v1
15
18
  with:
16
- ruby-version: 3.0.2
19
+ ruby-version: 2.7.8
17
20
  - name: rubocop
18
21
  uses: reviewdog/action-rubocop@v2
19
22
  with:
20
- github_token: ${{ secrets.GITHUB_TOKEN }}
21
23
  rubocop_version: gemfile
22
24
  rubocop_extensions: rubocop-rake:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile
23
25
  reporter: github-pr-review
@@ -30,17 +32,17 @@ jobs:
30
32
  strategy:
31
33
  matrix:
32
34
  # Always keep a window of "5 most recent" including (or on top with) HEAD
33
- ruby: ["2.6.8", "2.7.4", "3.0.2", "3.1.1", "latest"]
34
- sidekiq: ["3.3.1", "3.x", "4.x", "5.x", "6.x", "latest"]
35
+ ruby: ["2.7.8", "3.0.6", "3.1.4", "3.2.2", "latest"]
36
+ sidekiq: ["4.1.0", "4.x", "5.x", "6.x", "7.x", "latest"]
35
37
  # Allow failures ... kind-a
36
38
  exclude:
37
- - ruby: "2.6.8"
39
+ - ruby: "2.7.8"
38
40
  sidekiq: "latest"
39
- - ruby: "2.7.4"
41
+ - ruby: "3.0.6"
40
42
  sidekiq: "latest"
41
- - ruby: "3.0.2"
43
+ - ruby: "3.1.4"
42
44
  sidekiq: "latest"
43
- - ruby: "3.1.1"
45
+ - ruby: "3.2.2"
44
46
  sidekiq: "latest"
45
47
 
46
48
  container:
data/.rubocop.yml CHANGED
@@ -8,6 +8,9 @@ AllCops:
8
8
  NewCops: enable
9
9
  SuggestExtensions: false
10
10
  TargetRubyVersion: ~
11
+ Exclude:
12
+ - "gemfiles/**/*"
13
+ - "tmp/**/*"
11
14
 
12
15
  Gemspec/RequiredRubyVersion:
13
16
  Enabled: false
@@ -69,7 +72,7 @@ Layout/MultilineOperationIndentation:
69
72
  IndentationWidth: ~
70
73
 
71
74
  Metrics/AbcSize:
72
- Max: 25
75
+ Max: 35
73
76
  CountRepeatedAttributes: false
74
77
 
75
78
  Metrics/MethodLength:
data/Appraisals CHANGED
@@ -1,24 +1,12 @@
1
- appraise 'sidekiq-3.3.1' do
2
- gem 'slim'
1
+ appraise 'sidekiq-4.1.0' do
3
2
  gem 'redis', '~> 3.3'
4
- gem 'redis-namespace', '< 1.7.0'
3
+ gem 'sidekiq', '= 4.1.0'
5
4
  gem 'sinatra'
6
- gem 'concurrent-ruby'
7
- gem 'sidekiq', '= 3.3.1'
8
- end
9
-
10
- appraise 'sidekiq-3.x' do
11
- gem 'slim'
12
- gem 'redis', '~> 3.3'
13
- gem 'redis-namespace', '< 1.7.0'
14
- gem 'sinatra'
15
- gem 'concurrent-ruby'
16
- gem 'sidekiq', '~> 3.0'
17
5
  end
18
6
 
19
7
  appraise 'sidekiq-4.x' do
20
8
  gem 'redis', '~> 3.3'
21
- gem 'sidekiq', '~> 4.0'
9
+ gem 'sidekiq', '~> 4.1'
22
10
  end
23
11
 
24
12
  appraise 'sidekiq-5.x' do
@@ -31,6 +19,11 @@ appraise 'sidekiq-6.x' do
31
19
  gem 'sidekiq', '~> 6.0'
32
20
  end
33
21
 
22
+ appraise 'sidekiq-7.x' do
23
+ gem 'redis', '~> 5.0'
24
+ gem 'sidekiq', '~> 7.0'
25
+ end
26
+
34
27
  appraise 'sidekiq-latest' do
35
28
  gem 'rack', '>= 2', github: 'rack/rack'
36
29
  gem 'redis', '>= 4', github: 'redis/redis-rb'
data/README.md CHANGED
@@ -20,7 +20,7 @@ Open [dashboard example file](/examples/sidekiq-dashboard.grafana-7.json) (grafa
20
20
 
21
21
  # Available metrics
22
22
 
23
- _(starting Sidekiq `v3.3.1`)_
23
+ _(starting Sidekiq `v4.1.0`)_
24
24
 
25
25
  ## Standard
26
26
 
@@ -30,6 +30,7 @@ _(starting Sidekiq `v3.3.1`)_
30
30
  | sidekiq_failed_jobs_total | counter | The total number of failed jobs |
31
31
  | sidekiq_workers | gauge | The number of workers across all the processes |
32
32
  | sidekiq_processes | gauge | The number of processes |
33
+ | sidekiq_host_processes | gauge | The number of processes running on the host (labels: `host`, `quiet`) |
33
34
  | sidekiq_busy_workers | gauge | The number of workers performing the job |
34
35
  | sidekiq_enqueued_jobs | gauge | The number of enqueued jobs |
35
36
  | sidekiq_scheduled_jobs | gauge | The number of jobs scheduled for a future execution |
@@ -220,4 +221,4 @@ please make sure that you are following naming conventions from [Prometheus](htt
220
221
 
221
222
  # License
222
223
 
223
- Please see [LICENSE](https://github.com/mperham/sidekiq/blob/master/LICENSE) for licensing details.
224
+ Please see [LICENSE](/LICENSE) for licensing details.
data/Rakefile CHANGED
@@ -12,6 +12,7 @@ require 'fileutils'
12
12
  require_relative 'lib/sidekiq/prometheus/exporter/version'
13
13
 
14
14
  VERSION = Sidekiq::Prometheus::Exporter::VERSION
15
+ DOCKER_PATCH_VERSION = Sidekiq::Prometheus::Exporter::DOCKER_PATCH_VERSION
15
16
 
16
17
  def execute(command)
17
18
  output = `#{command}`
@@ -24,17 +25,22 @@ def execute(command)
24
25
  output
25
26
  end
26
27
 
28
+ def docker_version
29
+ patch = DOCKER_PATCH_VERSION unless DOCKER_PATCH_VERSION.to_i.zero?
30
+ [VERSION, patch].compact.join('-')
31
+ end
32
+
27
33
  namespace :docker do
28
- desc "Release new Docker image strech/sidekiq-prometheus-exporter:#{VERSION} (latest)"
29
- task :release, %i(patch) do |_, args|
30
- version = [VERSION, args.patch].compact.join('-')
34
+ desc "Release new Docker image strech/sidekiq-prometheus-exporter:#{docker_version} (latest)"
35
+ task :release, %i(version) do |_, args|
36
+ version = args.fetch(:version, docker_version)
31
37
 
32
38
  Rake::Task['docker:build'].invoke(version)
33
39
  Rake::Task['docker:push'].invoke(version)
34
40
  end
35
41
 
36
42
  task :build, %i(version) do |_, args|
37
- args.with_defaults(version: VERSION)
43
+ args.with_defaults(version: docker_version)
38
44
  image = 'strech/sidekiq-prometheus-exporter'
39
45
 
40
46
  Dir.chdir(File.expand_path('./docker')) do
@@ -45,7 +51,7 @@ namespace :docker do
45
51
  end
46
52
 
47
53
  task :push, %i(version) do |_, args|
48
- args.with_defaults(version: VERSION)
54
+ args.with_defaults(version: docker_version)
49
55
  image = 'strech/sidekiq-prometheus-exporter'
50
56
 
51
57
  execute("docker push #{image}:#{args.version}")
@@ -57,12 +63,12 @@ end
57
63
 
58
64
  namespace :helm do
59
65
  desc 'Generate new Helm repo index'
60
- task :generate, %i(patch) do |_, args|
61
- version = [VERSION, args.patch].compact.join('-')
66
+ task :generate, %i(version) do |_, args|
67
+ args.with_defaults(version: docker_version)
62
68
  archive_dir = File.expand_path("./tmp/archive-#{Time.now.to_i}")
63
69
 
64
70
  Rake::Task['helm:package'].invoke(archive_dir)
65
- Rake::Task['helm:index'].invoke(archive_dir, version)
71
+ Rake::Task['helm:index'].invoke(archive_dir, args.version)
66
72
 
67
73
  puts "New index generated: #{File.join(archive_dir, 'index.yaml')}"
68
74
  end
@@ -77,7 +83,7 @@ namespace :helm do
77
83
  end
78
84
 
79
85
  task :index, %i(directory version) do |_, args|
80
- args.with_defaults(version: VERSION)
86
+ args.with_defaults(version: docker_version)
81
87
 
82
88
  Dir.chdir(args.fetch(:directory)) do
83
89
  url = "https://github.com/Strech/sidekiq-prometheus-exporter/releases/download/v#{args.version}"
data/docker/Dockerfile CHANGED
@@ -1,11 +1,11 @@
1
- FROM ruby:2.7.5-alpine
1
+ FROM ruby:2.7.7-alpine3.16
2
2
 
3
3
  LABEL maintainer="Sergey Fedorov <oni.strech@gmail.com>"
4
4
  LABEL repository="strech/sidekiq-prometheus-exporter"
5
5
 
6
- ENV RACK_VERSION 2.0.9
7
- ENV SIDEKIQ_VERSION 6.2.1
8
- ENV REDIS_NAMESPACE_VERSION 1.8.1
6
+ ENV RACK_VERSION 2.2.4
7
+ ENV SIDEKIQ_VERSION 6.5.7
8
+ ENV REDIS_NAMESPACE_VERSION 1.9
9
9
  ENV SIDEKIQ_PROMETHEUS_EXPORTER_VERSION 0.1.17
10
10
 
11
11
  RUN addgroup -S exporter \
@@ -2,11 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "slim"
6
5
  gem "redis", "~> 3.3"
7
- gem "redis-namespace", "< 1.7.0"
6
+ gem "sidekiq", "= 4.1.0"
8
7
  gem "sinatra"
9
- gem "concurrent-ruby"
10
- gem "sidekiq", "~> 3.0"
11
8
 
12
9
  gemspec path: "../"
@@ -0,0 +1,117 @@
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.2.2)
19
+ connection_pool (2.4.0)
20
+ diff-lcs (1.5.0)
21
+ json (2.6.3)
22
+ method_source (1.0.0)
23
+ mustermann (3.0.0)
24
+ ruby2_keywords (~> 0.0.1)
25
+ parallel (1.23.0)
26
+ parser (3.2.2.0)
27
+ ast (~> 2.4.1)
28
+ pry (0.14.2)
29
+ coderay (~> 1.1)
30
+ method_source (~> 1.0)
31
+ pry-byebug (3.10.1)
32
+ byebug (~> 11.0)
33
+ pry (>= 0.13, < 0.15)
34
+ rack (2.2.6.4)
35
+ rack-protection (3.0.3)
36
+ rack
37
+ rack-test (1.1.0)
38
+ rack (>= 1.0, < 3)
39
+ rainbow (3.1.1)
40
+ rake (13.0.6)
41
+ redis (3.3.5)
42
+ regexp_parser (2.8.0)
43
+ rexml (3.2.5)
44
+ rspec (3.12.0)
45
+ rspec-core (~> 3.12.0)
46
+ rspec-expectations (~> 3.12.0)
47
+ rspec-mocks (~> 3.12.0)
48
+ rspec-core (3.12.2)
49
+ rspec-support (~> 3.12.0)
50
+ rspec-expectations (3.12.3)
51
+ diff-lcs (>= 1.2.0, < 2.0)
52
+ rspec-support (~> 3.12.0)
53
+ rspec-mocks (3.12.5)
54
+ diff-lcs (>= 1.2.0, < 2.0)
55
+ rspec-support (~> 3.12.0)
56
+ rspec-support (3.12.0)
57
+ rubocop (1.50.2)
58
+ json (~> 2.3)
59
+ parallel (~> 1.10)
60
+ parser (>= 3.2.0.0)
61
+ rainbow (>= 2.2.2, < 4.0)
62
+ regexp_parser (>= 1.8, < 3.0)
63
+ rexml (>= 3.2.5, < 4.0)
64
+ rubocop-ast (>= 1.28.0, < 2.0)
65
+ ruby-progressbar (~> 1.7)
66
+ unicode-display_width (>= 2.4.0, < 3.0)
67
+ rubocop-ast (1.28.0)
68
+ parser (>= 3.2.1.0)
69
+ rubocop-capybara (2.18.0)
70
+ rubocop (~> 1.41)
71
+ rubocop-performance (1.17.1)
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.20.0)
77
+ rubocop (~> 1.33)
78
+ rubocop-capybara (~> 2.17)
79
+ ruby-progressbar (1.13.0)
80
+ ruby2_keywords (0.0.5)
81
+ sidekiq (4.1.0)
82
+ concurrent-ruby (~> 1.0)
83
+ connection_pool (~> 2.2, >= 2.2.0)
84
+ redis (~> 3.2, >= 3.2.1)
85
+ sinatra (3.0.3)
86
+ mustermann (~> 3.0)
87
+ rack (~> 2.2, >= 2.2.4)
88
+ rack-protection (= 3.0.3)
89
+ tilt (~> 2.0)
90
+ thor (1.2.1)
91
+ tilt (2.0.11)
92
+ timecop (0.9.6)
93
+ unicode-display_width (2.4.2)
94
+
95
+ PLATFORMS
96
+ x86_64-darwin-21
97
+
98
+ DEPENDENCIES
99
+ appraisal (~> 2.2)
100
+ bundler (~> 2.1)
101
+ pry (~> 0.14)
102
+ pry-byebug (~> 3.6)
103
+ rack-test (~> 1.1)
104
+ rake (~> 13.0)
105
+ redis (~> 3.3)
106
+ rspec (~> 3.0)
107
+ rubocop (~> 1.22)
108
+ rubocop-performance (~> 1.12)
109
+ rubocop-rake (~> 0.6)
110
+ rubocop-rspec (~> 2.6)
111
+ sidekiq (= 4.1.0)
112
+ sidekiq-prometheus-exporter!
113
+ sinatra
114
+ timecop (~> 0.9)
115
+
116
+ BUNDLED WITH
117
+ 2.3.26
@@ -3,6 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "redis", "~> 3.3"
6
- gem "sidekiq", "~> 4.0"
6
+ gem "sidekiq", "~> 4.1"
7
7
 
8
8
  gemspec path: "../"
@@ -15,60 +15,62 @@ GEM
15
15
  ast (2.4.2)
16
16
  byebug (11.1.3)
17
17
  coderay (1.1.3)
18
- concurrent-ruby (1.1.9)
19
- connection_pool (2.2.5)
18
+ concurrent-ruby (1.1.10)
19
+ connection_pool (2.3.0)
20
20
  diff-lcs (1.5.0)
21
+ json (2.6.2)
21
22
  method_source (1.0.0)
22
- parallel (1.21.0)
23
- parser (3.1.1.0)
23
+ parallel (1.22.1)
24
+ parser (3.1.2.1)
24
25
  ast (~> 2.4.1)
25
- pry (0.13.1)
26
+ pry (0.14.2)
26
27
  coderay (~> 1.1)
27
28
  method_source (~> 1.0)
28
- pry-byebug (3.9.0)
29
+ pry-byebug (3.10.1)
29
30
  byebug (~> 11.0)
30
- pry (~> 0.13.0)
31
- rack (2.2.3)
32
- rack-protection (2.2.0)
31
+ pry (>= 0.13, < 0.15)
32
+ rack (2.2.4)
33
+ rack-protection (3.0.3)
33
34
  rack
34
35
  rack-test (1.1.0)
35
36
  rack (>= 1.0, < 3)
36
37
  rainbow (3.1.1)
37
38
  rake (13.0.6)
38
39
  redis (3.3.5)
39
- regexp_parser (2.2.1)
40
+ regexp_parser (2.6.1)
40
41
  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)
42
+ rspec (3.12.0)
43
+ rspec-core (~> 3.12.0)
44
+ rspec-expectations (~> 3.12.0)
45
+ rspec-mocks (~> 3.12.0)
46
+ rspec-core (3.12.0)
47
+ rspec-support (~> 3.12.0)
48
+ rspec-expectations (3.12.0)
48
49
  diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.11.0)
50
- rspec-mocks (3.11.0)
50
+ rspec-support (~> 3.12.0)
51
+ rspec-mocks (3.12.0)
51
52
  diff-lcs (>= 1.2.0, < 2.0)
52
- rspec-support (~> 3.11.0)
53
- rspec-support (3.11.0)
54
- rubocop (1.26.0)
53
+ rspec-support (~> 3.12.0)
54
+ rspec-support (3.12.0)
55
+ rubocop (1.39.0)
56
+ json (~> 2.3)
55
57
  parallel (~> 1.10)
56
- parser (>= 3.1.0.0)
58
+ parser (>= 3.1.2.1)
57
59
  rainbow (>= 2.2.2, < 4.0)
58
60
  regexp_parser (>= 1.8, < 3.0)
59
- rexml
60
- rubocop-ast (>= 1.16.0, < 2.0)
61
+ rexml (>= 3.2.5, < 4.0)
62
+ rubocop-ast (>= 1.23.0, < 2.0)
61
63
  ruby-progressbar (~> 1.7)
62
64
  unicode-display_width (>= 1.4.0, < 3.0)
63
- rubocop-ast (1.16.0)
65
+ rubocop-ast (1.23.0)
64
66
  parser (>= 3.1.1.0)
65
- rubocop-performance (1.13.3)
67
+ rubocop-performance (1.15.1)
66
68
  rubocop (>= 1.7.0, < 2.0)
67
69
  rubocop-ast (>= 0.4.0)
68
70
  rubocop-rake (0.6.0)
69
71
  rubocop (~> 1.0)
70
- rubocop-rspec (2.9.0)
71
- rubocop (~> 1.19)
72
+ rubocop-rspec (2.15.0)
73
+ rubocop (~> 1.33)
72
74
  ruby-progressbar (1.11.0)
73
75
  sidekiq (4.2.10)
74
76
  concurrent-ruby (~> 1.0)
@@ -77,7 +79,7 @@ GEM
77
79
  redis (~> 3.2, >= 3.2.1)
78
80
  thor (1.2.1)
79
81
  timecop (0.9.5)
80
- unicode-display_width (2.1.0)
82
+ unicode-display_width (2.3.0)
81
83
 
82
84
  PLATFORMS
83
85
  ruby
@@ -85,6 +87,7 @@ PLATFORMS
85
87
  DEPENDENCIES
86
88
  appraisal (~> 2.2)
87
89
  bundler (~> 2.1)
90
+ pry (~> 0.14)
88
91
  pry-byebug (~> 3.6)
89
92
  rack-test (~> 1.1)
90
93
  rake (~> 13.0)
@@ -94,9 +97,9 @@ DEPENDENCIES
94
97
  rubocop-performance (~> 1.12)
95
98
  rubocop-rake (~> 0.6)
96
99
  rubocop-rspec (~> 2.6)
97
- sidekiq (~> 4.0)
100
+ sidekiq (~> 4.1)
98
101
  sidekiq-prometheus-exporter!
99
102
  timecop (~> 0.9)
100
103
 
101
104
  BUNDLED WITH
102
- 2.3.7
105
+ 2.3.26
@@ -15,59 +15,61 @@ GEM
15
15
  ast (2.4.2)
16
16
  byebug (11.1.3)
17
17
  coderay (1.1.3)
18
- connection_pool (2.2.5)
18
+ connection_pool (2.3.0)
19
19
  diff-lcs (1.5.0)
20
+ json (2.6.2)
20
21
  method_source (1.0.0)
21
- parallel (1.21.0)
22
- parser (3.1.1.0)
22
+ parallel (1.22.1)
23
+ parser (3.1.2.1)
23
24
  ast (~> 2.4.1)
24
- pry (0.13.1)
25
+ pry (0.14.2)
25
26
  coderay (~> 1.1)
26
27
  method_source (~> 1.0)
27
- pry-byebug (3.9.0)
28
+ pry-byebug (3.10.1)
28
29
  byebug (~> 11.0)
29
- pry (~> 0.13.0)
30
- rack (2.2.3)
31
- rack-protection (2.2.0)
30
+ pry (>= 0.13, < 0.15)
31
+ rack (2.2.4)
32
+ rack-protection (3.0.3)
32
33
  rack
33
34
  rack-test (1.1.0)
34
35
  rack (>= 1.0, < 3)
35
36
  rainbow (3.1.1)
36
37
  rake (13.0.6)
37
38
  redis (3.3.5)
38
- regexp_parser (2.2.1)
39
+ regexp_parser (2.6.1)
39
40
  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)
41
+ rspec (3.12.0)
42
+ rspec-core (~> 3.12.0)
43
+ rspec-expectations (~> 3.12.0)
44
+ rspec-mocks (~> 3.12.0)
45
+ rspec-core (3.12.0)
46
+ rspec-support (~> 3.12.0)
47
+ rspec-expectations (3.12.0)
47
48
  diff-lcs (>= 1.2.0, < 2.0)
48
- rspec-support (~> 3.11.0)
49
- rspec-mocks (3.11.0)
49
+ rspec-support (~> 3.12.0)
50
+ rspec-mocks (3.12.0)
50
51
  diff-lcs (>= 1.2.0, < 2.0)
51
- rspec-support (~> 3.11.0)
52
- rspec-support (3.11.0)
53
- rubocop (1.26.0)
52
+ rspec-support (~> 3.12.0)
53
+ rspec-support (3.12.0)
54
+ rubocop (1.39.0)
55
+ json (~> 2.3)
54
56
  parallel (~> 1.10)
55
- parser (>= 3.1.0.0)
57
+ parser (>= 3.1.2.1)
56
58
  rainbow (>= 2.2.2, < 4.0)
57
59
  regexp_parser (>= 1.8, < 3.0)
58
- rexml
59
- rubocop-ast (>= 1.16.0, < 2.0)
60
+ rexml (>= 3.2.5, < 4.0)
61
+ rubocop-ast (>= 1.23.0, < 2.0)
60
62
  ruby-progressbar (~> 1.7)
61
63
  unicode-display_width (>= 1.4.0, < 3.0)
62
- rubocop-ast (1.16.0)
64
+ rubocop-ast (1.23.0)
63
65
  parser (>= 3.1.1.0)
64
- rubocop-performance (1.13.3)
66
+ rubocop-performance (1.15.1)
65
67
  rubocop (>= 1.7.0, < 2.0)
66
68
  rubocop-ast (>= 0.4.0)
67
69
  rubocop-rake (0.6.0)
68
70
  rubocop (~> 1.0)
69
- rubocop-rspec (2.9.0)
70
- rubocop (~> 1.19)
71
+ rubocop-rspec (2.15.0)
72
+ rubocop (~> 1.33)
71
73
  ruby-progressbar (1.11.0)
72
74
  sidekiq (5.2.9)
73
75
  connection_pool (~> 2.2, >= 2.2.2)
@@ -76,7 +78,7 @@ GEM
76
78
  redis (>= 3.3.5, < 4.2)
77
79
  thor (1.2.1)
78
80
  timecop (0.9.5)
79
- unicode-display_width (2.1.0)
81
+ unicode-display_width (2.3.0)
80
82
 
81
83
  PLATFORMS
82
84
  ruby
@@ -84,6 +86,7 @@ PLATFORMS
84
86
  DEPENDENCIES
85
87
  appraisal (~> 2.2)
86
88
  bundler (~> 2.1)
89
+ pry (~> 0.14)
87
90
  pry-byebug (~> 3.6)
88
91
  rack-test (~> 1.1)
89
92
  rake (~> 13.0)
@@ -98,4 +101,4 @@ DEPENDENCIES
98
101
  timecop (~> 0.9)
99
102
 
100
103
  BUNDLED WITH
101
- 2.3.7
104
+ 2.3.26