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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 33751169bc37e3ce515c82a40cceef962731d790aa317a9637b18914a46190a3
4
- data.tar.gz: 91eb14067a2e743cc3022cea2147958210db08bfb29c51ce0fd7949ae3781780
3
+ metadata.gz: ba5e4d42e9ce8e83d27b2ff2a0ca2de8e42d1328f3aa5e8fc9c395d7bbb2dfdf
4
+ data.tar.gz: 67b5719e8efe439529a2966bdd555d7807785d20c416e745d32ed439bfa8d161
5
5
  SHA512:
6
- metadata.gz: fb1ffa2cc81485ae694b25fc0f24bbe963cc3cbba4868014ca726ac310247d1b24bab5faf8650c55cb16a0aa0d61ec2f3ba733767a453eb0b66d5267328311f5
7
- data.tar.gz: c209d5562abc1426237b51290dac6e5575b4c0ea63241758795d42f061f1c0130c158fbbe320453e68a632a479af59f9dbf5e2d053cda1b0c42631ffe196a57c
6
+ metadata.gz: 2e477f2deb50b291e55ad812a3d54a2c9b83b5d14b917641f5fe7663a7f8c95c57c9933f95e6bc1d6005fa5abb514018d374c47bc11b7762f9f8ca85d93101bd
7
+ data.tar.gz: 3a65411a4af069f947362e1854bdf05af826759a3fab9862cf32a8d5ff2e6a54984459badf0ff8d85dbc9f900f6fd0b1e8d35af887fb139c9d4c8b7c4552cb66
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sidekiq-web_custom (0.3.1)
4
+ sidekiq-web_custom (0.4.0)
5
5
  sidekiq (>= 6.0)
6
6
  timeoutable (>= 1.0)
7
7
 
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', source: 'https://github.com/matt-taylor/sidekiq-web_custom'
13
+ gem 'sidekiq-web_custom'
16
14
  ```
17
15
 
18
16
  And then execute:
@@ -5,7 +5,6 @@ require 'action_mailer/railtie'
5
5
  require 'sprockets/railtie'
6
6
  require 'rails/test_unit/railtie'
7
7
 
8
- require 'byebug'
9
8
  Bundler.require(*Rails.groups)
10
9
  require 'sidekiq/web_custom'
11
10
 
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'byebug'
4
-
5
3
  worker_files = Dir[Rails.root.join('app','workers','**','*_worker.rb').to_s]
6
4
  require_workers = worker_files.map { |path| File.basename(path, '.rb') }
7
5
  require_workers.each do |worker|
@@ -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 = 3 # With feature launch. Documentation of upgrade is useful via a changelog
7
- PATCH = 1 # With minor upgrades or patcing a small bug. No changelog necessary
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
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'byebug'
4
3
  require_relative 'web_custom/version'
5
4
 
6
5
  # require sidekiq/web first to ensure web_Action will prepend correctly
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.3.1
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-07-05 00:00:00.000000000 Z
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.15
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