legionio 1.4.65 → 1.4.66

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: e5e01a2d4748710205dae71e670fe7fb6a8571045872f6833c0afce9d040a388
4
- data.tar.gz: 8496a698763b62cb4e716bc443e9db488fe1c874e64b150df9346f6a4e606226
3
+ metadata.gz: ce930ae41174649616f7c9793f36ba8d9c3b3d4655f778b34a10648715cdef35
4
+ data.tar.gz: 2cddda47aa6fb16bbaa6245daecb433ca572c60c2c689bfdb2aa7af6feb45349
5
5
  SHA512:
6
- metadata.gz: 8c1965245ae7b8783a6c8a1f2ffbe1c71d93bcf23a7ceffdd7d745aa09e18e518ddd2f48fb0fc3a4b8ee8156a04c1a7f9ebff944eb6479676103ee5ad47d312e
7
- data.tar.gz: 0a46cfea0becd87275d19aee93c4e2509c688a1cbd2197754f5b7c82c7ead45d45e954426940d0066665a21af9ffae0ed3c649ba04d87f636cb19ddbecef546d
6
+ metadata.gz: 9c9481c8ec290af1037a6457268742bf05f1c8034073c57728726d426a8d995e5bb1a2619d1e1906cf69a1e7629019461a75d4cb4f1718243f5a2d4f5386f777
7
+ data.tar.gz: 6607b7b494cfeb13a33e1101584c679107a7616d58004ef41d81984056b20a88fdb3ad0377fa43734d9e411d27bc22be6b6629429730c52181fbfe370c261192
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Legion Changelog
2
2
 
3
+ ## [1.4.66] - 2026-03-18
4
+
5
+ ### Fixed
6
+ - Doctor config check now looks in `~/.legionio/settings` (the actual default settings directory)
7
+ - Doctor permissions check now checks `~/.legionio/` directories instead of `/var/run`
8
+
3
9
  ## [1.4.65] - 2026-03-18
4
10
 
5
11
  ### Fixed
data/CLAUDE.md CHANGED
@@ -9,7 +9,7 @@ The primary gem for the LegionIO framework. An extensible async job engine for s
9
9
 
10
10
  **GitHub**: https://github.com/LegionIO/LegionIO
11
11
  **Gem**: `legionio`
12
- **Version**: 1.4.61
12
+ **Version**: 1.4.65
13
13
  **License**: Apache-2.0
14
14
  **Docker**: `legionio/legion`
15
15
  **Ruby**: >= 3.4
@@ -7,8 +7,8 @@ module Legion
7
7
  class Doctor
8
8
  class ConfigCheck
9
9
  CONFIG_PATHS = [
10
+ File.expand_path('~/.legionio/settings'),
10
11
  '/etc/legionio',
11
- File.expand_path('~/legionio'),
12
12
  File.expand_path('./settings')
13
13
  ].freeze
14
14
 
@@ -5,8 +5,9 @@ module Legion
5
5
  class Doctor
6
6
  class PermissionsCheck
7
7
  DIRECTORIES = [
8
- '/var/log/legion',
9
- '/var/run',
8
+ File.expand_path('~/.legionio'),
9
+ File.expand_path('~/.legionio/settings'),
10
+ File.expand_path('~/.legionio/logs'),
10
11
  '/tmp'
11
12
  ].freeze
12
13
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Legion
4
- VERSION = '1.4.65'
4
+ VERSION = '1.4.66'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legionio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.65
4
+ version: 1.4.66
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity