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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 327b682449b7092bfed60a8c2fbb1bd664ffb08a1f468a6b47461b00fa897fcc
4
- data.tar.gz: 14d54f2e304018baef0ca60c37bb591d14a902159df9cdc822e44b104166f20e
3
+ metadata.gz: 5abbc69dbb993fbb70331bfd382fe15e82e5ed61b587a80f1110bb75f852bf28
4
+ data.tar.gz: f5002194f3f13ee5fce6d5dd7b85bc35f9f7bea6a1144be85f00936c3f7c945f
5
5
  SHA512:
6
- metadata.gz: d70b9e66a04d858ddd23a01957522604bfff5ed9f1779694a1805643036d71f5660808038580c4a67c11321d808cf69052d5381813cc39a0e09c4a6b327e380c
7
- data.tar.gz: 2e75bd4c58d49b61c3007f0de8ebca10ecdad02128d6d30cb3ba49b43488dc79ebab3b27f0c1ffc22a74c57e9cabff19bb60fedb2475b0a655490fdf25c902d4
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
- - publish-rubygems
94
-
95
- # - publish-github:
96
- # requires:
97
- # - test
98
- # filters:
99
- # branches:
100
- # only:
101
- # - main
102
- # - publish-rubygems:
103
- # requires:
104
- # - test
105
- # filters:
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
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sidekiq-web_custom (0.2.0)
4
+ sidekiq-web_custom (0.3.0)
5
5
  sidekiq (>= 6.0)
6
- timeoutable
6
+ timeoutable (>= 1.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -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 = 2 # With feature launch. Documentation of upgrade is useful via a changelog
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
 
@@ -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 = "Write a longer description or delete this line."
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.2.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: Write a longer description or delete this line.
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: []