sidekiq-web_custom 0.3.1 → 0.4.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/Gemfile.lock +1 -1
- data/README.md +1 -3
- data/dummy_rails/config/application.rb +0 -1
- data/lib/load_random_workers.rb +0 -2
- data/lib/sidekiq/web_custom/version.rb +2 -2
- data/lib/sidekiq/web_custom.rb +0 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ba5e4d42e9ce8e83d27b2ff2a0ca2de8e42d1328f3aa5e8fc9c395d7bbb2dfdf
|
|
4
|
+
data.tar.gz: 67b5719e8efe439529a2966bdd555d7807785d20c416e745d32ed439bfa8d161
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e477f2deb50b291e55ad812a3d54a2c9b83b5d14b917641f5fe7663a7f8c95c57c9933f95e6bc1d6005fa5abb514018d374c47bc11b7762f9f8ca85d93101bd
|
|
7
|
+
data.tar.gz: 3a65411a4af069f947362e1854bdf05af826759a3fab9862cf32a8d5ff2e6a54984459badf0ff8d85dbc9f900f6fd0b1e8d35af887fb139c9d4c8b7c4552cb66
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -9,10 +9,8 @@ This Custom add on to the Sidekiq Web framework allows you to continue to drain
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
11
|
Add this line to your application's Gemfile:
|
|
12
|
-
|
|
13
|
-
Working on Adding a gem source. For now directly pull it from git
|
|
14
12
|
```ruby
|
|
15
|
-
gem 'sidekiq-web_custom'
|
|
13
|
+
gem 'sidekiq-web_custom'
|
|
16
14
|
```
|
|
17
15
|
|
|
18
16
|
And then execute:
|
data/lib/load_random_workers.rb
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
module Sidekiq
|
|
4
4
|
module WebCustom
|
|
5
5
|
MAJOR = 0 # With backwards incompatability. Requires annoucment and update documentation
|
|
6
|
-
MINOR =
|
|
7
|
-
PATCH =
|
|
6
|
+
MINOR = 4 # With feature launch. Documentation of upgrade is useful via a changelog
|
|
7
|
+
PATCH = 0 # With minor upgrades or patcing a small bug. No changelog necessary
|
|
8
8
|
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
|
9
9
|
|
|
10
10
|
def self.get_version
|
data/lib/sidekiq/web_custom.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Taylor
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sidekiq
|
|
@@ -147,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
147
147
|
- !ruby/object:Gem::Version
|
|
148
148
|
version: '0'
|
|
149
149
|
requirements: []
|
|
150
|
-
rubygems_version: 3.2.
|
|
150
|
+
rubygems_version: 3.2.22
|
|
151
151
|
signing_key:
|
|
152
152
|
specification_version: 4
|
|
153
153
|
summary: This gem adds on custom capabilities to the Sidekiq Web UI
|