sidekiq-web_custom 0.2.0 → 0.3.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 +4 -4
- data/.circleci/config.yml +14 -17
- data/Gemfile.lock +2 -2
- data/lib/sidekiq/web_custom/version.rb +1 -1
- data/sidekiq-web_custom.gemspec +6 -5
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5abbc69dbb993fbb70331bfd382fe15e82e5ed61b587a80f1110bb75f852bf28
|
|
4
|
+
data.tar.gz: f5002194f3f13ee5fce6d5dd7b85bc35f9f7bea6a1144be85f00936c3f7c945f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a33e6cf805366090f696f4d68c40f71da6a6799461bc39b6377ba9b98fb922686aeb12b452514b319c2eabbb0eee80caf30e0dfb12f3102a6dbd854e53dbe750
|
|
7
|
+
data.tar.gz: 25613e8ba0f928b4c2821658f2a799e98b461b2301676408f8ba940f09dabea68506a502d2d3ceaa5d1b58ea93c693320624f1ff3f48ba62ec07acde5451d052
|
data/.circleci/config.yml
CHANGED
|
@@ -89,21 +89,18 @@ workflows:
|
|
|
89
89
|
- test:
|
|
90
90
|
requires:
|
|
91
91
|
- build
|
|
92
|
-
- publish-github
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
# branches:
|
|
107
|
-
# only:
|
|
108
|
-
# - main
|
|
92
|
+
- publish-github:
|
|
93
|
+
requires:
|
|
94
|
+
- test
|
|
95
|
+
filters:
|
|
96
|
+
branches:
|
|
97
|
+
only:
|
|
98
|
+
- main
|
|
99
|
+
- publish-rubygems:
|
|
100
|
+
requires:
|
|
101
|
+
- test
|
|
102
|
+
filters:
|
|
103
|
+
branches:
|
|
104
|
+
only:
|
|
105
|
+
- main
|
|
109
106
|
|
data/Gemfile.lock
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Sidekiq
|
|
4
4
|
module WebCustom
|
|
5
5
|
MAJOR = 0 # With backwards incompatability. Requires annoucment and update documentation
|
|
6
|
-
MINOR =
|
|
6
|
+
MINOR = 3 # With feature launch. Documentation of upgrade is useful via a changelog
|
|
7
7
|
PATCH = 0 # With minor upgrades or patcing a small bug. No changelog necessary
|
|
8
8
|
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
|
9
9
|
|
data/sidekiq-web_custom.gemspec
CHANGED
|
@@ -9,7 +9,11 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.email = ["mattius.taylor@gmail.com"]
|
|
10
10
|
|
|
11
11
|
spec.summary = "This gem adds on custom capabilities to the Sidekiq Web UI"
|
|
12
|
-
spec.description =
|
|
12
|
+
spec.description = <<-DOC
|
|
13
|
+
Have you ever needed to add custom buttons to the sidekiq UI?
|
|
14
|
+
Have you ever needed to drain a queue that is not bound to a Sidekiq Process?
|
|
15
|
+
This Gem allows you to to do all of that from the Sidekiq UI!
|
|
16
|
+
DOC
|
|
13
17
|
spec.homepage = "https://github.com/matt-taylor/sidekiq-web_custom"
|
|
14
18
|
spec.license = "MIT"
|
|
15
19
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
|
|
@@ -30,8 +34,5 @@ Gem::Specification.new do |spec|
|
|
|
30
34
|
spec.require_paths = ["lib"]
|
|
31
35
|
|
|
32
36
|
spec.add_dependency 'sidekiq', '>= 6.0'
|
|
33
|
-
spec.add_dependency 'timeoutable'
|
|
34
|
-
|
|
35
|
-
# For more information and examples about making a new gem, checkout our
|
|
36
|
-
# guide at: https://bundler.io/guides/creating_gem.html
|
|
37
|
+
spec.add_dependency 'timeoutable', '>= 1.0'
|
|
37
38
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sidekiq-web_custom
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Taylor
|
|
@@ -30,15 +30,18 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
33
|
+
version: '1.0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
41
|
-
description:
|
|
40
|
+
version: '1.0'
|
|
41
|
+
description: |2
|
|
42
|
+
Have you ever needed to add custom buttons to the sidekiq UI?
|
|
43
|
+
Have you ever needed to drain a queue that is not bound to a Sidekiq Process?
|
|
44
|
+
This Gem allows you to to do all of that from the Sidekiq UI!
|
|
42
45
|
email:
|
|
43
46
|
- mattius.taylor@gmail.com
|
|
44
47
|
executables: []
|