lex-apollo 0.4.1 → 0.4.2

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: 0b7130ec99089eece62bf352549e8085ec55063a0af9607a45ec2876374377ee
4
- data.tar.gz: 59f5ebe8f2287a9fd2b5fd56cda27f5aecf7807e3064621d5406e9716b824f2f
3
+ metadata.gz: 58044db4866170db60e7607b6dd9d5afcf56118c5d8373c180d9618480b59c82
4
+ data.tar.gz: c29bca810b4c41aed2093ee2ee64d12608d53a12d0401a47911b25ca2b9c3705
5
5
  SHA512:
6
- metadata.gz: 827d5930700daf568c87560b5edecdd0250ed8decf7281d863201bbb756ca0ecc6d76dbcafb85d4bd11d17eaded1121c4445aea7f82f7ee40c6bb2fe48e0d7b8
7
- data.tar.gz: 9cc84f4420c8a2a926c8b33119af1be20dbc171289613af4e252eaff202ecc063c95cf9b3630f413dcb9203881c6c7e7fe7593964fefaab43c42a9b6823c5f23
6
+ metadata.gz: 2f72472b867e644ca58175c5fb7d3d0300a44e2e52fca0d75fd8000d2deae5ef524a29a93418f3be20d074037493d541bd2ddeb7c3b4c0cbdaf0869934147ec6
7
+ data.tar.gz: 0aeee79c5734195652092460791ea4089a8c4e71bcf141f33bb01c0c478dc4ddb44e26410e0d7607270f7fec172131687b58c794c0b9f60bad95a44c676257b2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.2] - 2026-03-24
4
+
5
+ ### Fixed
6
+ - fix `undefined method 'scan_and_ingest' for module EntityExtractor` in EntityWatchdog actor — self-contained actors must override `runner_class` to return `self.class` so the framework dispatches to the actor instance, not the runner module
7
+
3
8
  ## [0.4.1] - 2026-03-23
4
9
 
5
10
  ### Changed
@@ -16,7 +16,7 @@ module Legion
16
16
  TASK_LOG_LOOKBACK_SECONDS = 300
17
17
  TASK_LOG_LIMIT = 50
18
18
 
19
- def runner_class = Legion::Extensions::Apollo::Runners::EntityExtractor
19
+ def runner_class = self.class
20
20
  def runner_function = 'scan_and_ingest'
21
21
  def time = 120
22
22
  def run_now? = false
@@ -3,7 +3,7 @@
3
3
  module Legion
4
4
  module Extensions
5
5
  module Apollo
6
- VERSION = '0.4.1'
6
+ VERSION = '0.4.2'
7
7
  end
8
8
  end
9
9
  end
@@ -23,8 +23,8 @@ RSpec.describe Legion::Extensions::Apollo::Actor::EntityWatchdog do
23
23
  subject(:actor) { described_class.allocate }
24
24
 
25
25
  describe 'actor configuration' do
26
- it 'uses EntityExtractor as runner_class' do
27
- expect(actor.runner_class).to eq(Legion::Extensions::Apollo::Runners::EntityExtractor)
26
+ it 'uses self.class as runner_class for self-contained dispatch' do
27
+ expect(actor.runner_class).to eq(described_class)
28
28
  end
29
29
 
30
30
  it 'runs scan_and_ingest function' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lex-apollo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity