thecore_background_jobs 3.0.8 → 3.0.10
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/config/routes.rb +3 -1
- data/lib/thecore_background_jobs/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b1a16ea53431eb3fa1cae6fbca5b715db74aae2795d45f5b50ecafca63ed007
|
4
|
+
data.tar.gz: c8b0e68deee5e1e47dfae49f2dab033f2fbd47650b4e112a91c91dff4e7cbc58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c7e9e97c5264261829a54072d074fc3ab9315bc2c1500c15272f91472cff877f41d476ad5fb12d661ced6760331f915d059ddf1b8b528aa7351c6c5f689e2cf
|
7
|
+
data.tar.gz: daa21a6a615313e566245c1371a23adbfbeea04f86c09191a744194eb3b2161efd3134d32a1c0f4d8aab355325cb0cf726e17fb6c9f5e181dce71b6ffe6eedae
|
data/config/routes.rb
CHANGED
@@ -4,6 +4,8 @@ Rails.application.routes.draw do
|
|
4
4
|
|
5
5
|
# Allow any authenticated User with admin capability
|
6
6
|
authenticate :user, lambda { |u| u.admin? } do
|
7
|
-
|
7
|
+
scope ENV.fetch("RAILS_RELATIVE_URL_ROOT", "/") do
|
8
|
+
mount Sidekiq::Web => "/sidekiq"
|
9
|
+
end
|
8
10
|
end
|
9
11
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thecore_background_jobs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriele Tassoni
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-21 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: redis-namespace
|
@@ -93,7 +92,6 @@ metadata:
|
|
93
92
|
homepage_uri: https://github.com/gabrieletassoni/thecore_background_jobs
|
94
93
|
source_code_uri: https://github.com/gabrieletassoni/thecore_background_jobs
|
95
94
|
changelog_uri: https://github.com/gabrieletassoni/thecore_background_jobs/blob/master/CHANGELOG.md
|
96
|
-
post_install_message:
|
97
95
|
rdoc_options: []
|
98
96
|
require_paths:
|
99
97
|
- lib
|
@@ -108,8 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
106
|
- !ruby/object:Gem::Version
|
109
107
|
version: '0'
|
110
108
|
requirements: []
|
111
|
-
rubygems_version: 3.
|
112
|
-
signing_key:
|
109
|
+
rubygems_version: 3.6.2
|
113
110
|
specification_version: 4
|
114
111
|
summary: Background workers for Thecore
|
115
112
|
test_files: []
|