solid_queue_autoscaler 1.0.0 → 1.0.1

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: 7ba25b2ae8e389c0cc4da50d7587f93df6b6eeb404ffe4d810ff8e4b574354dd
4
- data.tar.gz: 73da42d85f85f71efcaa913467dffaf1aac049d2a0c12fd3a52965600f682be6
3
+ metadata.gz: 8906fc1656509c2abc82235e62dbb93cf04738222c547cf1eedfeab29be8f944
4
+ data.tar.gz: 9949a6e3a78cc0e494b463eb4ef0251559162c57b75216d4a7557c212af3c20f
5
5
  SHA512:
6
- metadata.gz: df644086ce41dd9ac5f7788551db7eec3fff37bfae9b81ead46d41d8850a49beaa72b0a8299a3c32171f2c8a321b0ff64ec969b4a00ad19cd9d8422b87358fc8
7
- data.tar.gz: 22d75c0d678297d5ca8ac2e8c1265c2adc95b4f398a9daa4bd7a349d3ebbb3142e1753f6ec8732e88790bd97c95d6da5448549e2468e3814bfc711f502731363
6
+ metadata.gz: 5e41601195114b632a01e0b8f137d056dbd549a2f2fe7b81d29c1a9687161b9cefbd4fe849686a6fe5a80fb77bc32c87b0a89b59e3da63c662efeb18b20717ea
7
+ data.tar.gz: 9b55e124420d321a9abf50f3301edf21ec592d738d6cfc2116a246a97c2342cfdd98e050f8824a5d745721853f2903cbdff59be064846fbc1e421a8dca4e1ab7
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.1] - 2025-01-16
11
+
12
+ ### Fixed
13
+ - Fixed Dashboard::Engine not loading properly in Rails applications due to load order issues
14
+ - Engine is now loaded from the railtie to ensure Rails is fully initialized first
15
+
10
16
  ## [1.0.0] - 2025-01-16
11
17
 
12
18
  ### Changed
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative 'dashboard/engine' if defined?(Rails::Engine)
4
-
5
3
  module SolidQueueAutoscaler
6
4
  # Dashboard module provides a web UI for monitoring the autoscaler.
7
5
  # Integrates with Mission Control Solid Queue when available.
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # Load the dashboard engine when Rails is available
4
+ require_relative 'dashboard/engine'
5
+
3
6
  module SolidQueueAutoscaler
4
7
  class Railtie < Rails::Railtie
5
8
  initializer 'solid_queue_autoscaler.configure' do
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidQueueAutoscaler
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solid_queue_autoscaler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - reillyse