sidekiq-scheduler 5.0.4 → 5.0.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37443909d89f84370b1f475426c6b21564f1e1f97df5e70018f8791eb4a215bb
|
4
|
+
data.tar.gz: 04e0ca34182e9ef7234422d27d3e940f80d6ce1daffe60ae75bb0d244cdd83c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fdd135d83f6ae7c423d9284ea4a8bfb457b8ca08285abaea604a729b824f392c2c370b618c0a84dad6f9dd86fe301a9f59b742e08447f82ecc29d322750929a
|
7
|
+
data.tar.gz: 3bfc766d6011f10d142da7785c22852c0df8a3df88dc5849494b9a25f711a02af224bb8ae6317721572381b75d170933e0680638760995241e3064f0820462bf
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
# 5.0.5
|
2
|
+
- [**FIX**] Use correct folder structure for assets [#476](https://github.com/sidekiq-scheduler/sidekiq-scheduler/pull/476)
|
3
|
+
|
1
4
|
# 5.0.4
|
2
5
|
- [**FIX**] Ensure rufus-scheduler has a default rufus_scheduler_options value [#434](https://github.com/sidekiq-scheduler/sidekiq-scheduler/issues/426)
|
3
6
|
- [**ENHANCEMENT**] Remove code related to sidekiq < 6 [#443](https://github.com/sidekiq-scheduler/sidekiq-scheduler/pull/443)
|
@@ -20,7 +20,7 @@ else
|
|
20
20
|
Sidekiq::Web.tabs['recurring_jobs'] = 'recurring-jobs'
|
21
21
|
Sidekiq::Web.locales << File.expand_path("#{File.dirname(__FILE__)}/../../../web/locales")
|
22
22
|
|
23
|
-
Sidekiq::Web.use Rack::Static, urls: ['/stylesheets-scheduler'],
|
23
|
+
Sidekiq::Web.use Rack::Static, urls: ['/recurring_jobs/stylesheets-scheduler'],
|
24
24
|
root: ASSETS_PATH,
|
25
25
|
cascade: true,
|
26
26
|
header_rules: [[:all, { 'cache-control' => 'private, max-age=86400' }]]
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<% if SidekiqScheduler::SidekiqAdapter::SIDEKIQ_GTE_7_3_0 %>
|
2
|
-
<%= style_tag "stylesheets-scheduler/recurring_jobs.css" %>
|
2
|
+
<%= style_tag "recurring_jobs/stylesheets-scheduler/recurring_jobs.css" %>
|
3
3
|
<% else %>
|
4
|
-
<link href="<%= root_path %>stylesheets-scheduler/recurring_jobs.css" media="screen" rel="stylesheet" type="text/css" />
|
4
|
+
<link href="<%= root_path %>recurring_jobs/stylesheets-scheduler/recurring_jobs.css" media="screen" rel="stylesheet" type="text/css" />
|
5
5
|
<% end %>
|
6
6
|
|
7
7
|
<div class="row">
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sidekiq-scheduler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Morton Jonuschat
|
@@ -220,7 +220,7 @@ files:
|
|
220
220
|
- lib/sidekiq-scheduler/version.rb
|
221
221
|
- lib/sidekiq-scheduler/web.rb
|
222
222
|
- lib/sidekiq/scheduler.rb
|
223
|
-
- web/assets/stylesheets-scheduler/recurring_jobs.css
|
223
|
+
- web/assets/recurring_jobs/stylesheets-scheduler/recurring_jobs.css
|
224
224
|
- web/locales/cs.yml
|
225
225
|
- web/locales/de.yml
|
226
226
|
- web/locales/en.yml
|
/data/web/assets/{stylesheets-scheduler → recurring_jobs/stylesheets-scheduler}/recurring_jobs.css
RENAMED
File without changes
|