Fix proc/block self binding in emits (v0.5.2) - #41
Merged
Conversation
Payload builder blocks and if:/unless: condition procs were executing with self bound to the class rather than the service instance, making instance variables set in initialize or call silently unreadable. Switching from call to instance_exec matches the behaviour of Symbol method references and is consistent with how Rails DSLs handle this. Regression tests added for both the condition and payload builder cases. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Patch fix for a bug introduced in 0.5.1 where
selfinside payload builder blocks andif:/unless:condition procs was bound to the class rather than the service instance.The bug
emitsaccepts procs/lambdas for payload building and conditions. These were executed viacall, which preserves the proc's originalself— the class at definition time. This meant instance variables set ininitializeorcallwere silently unreadable:The fix
Switch from
builder.call(result)toinstance_exec(result, &builder)in bothbuild_event_payloadandevaluate_emission_condition. This bindsselfto the service instance, matching the existing behaviour of Symbol method references.Any code reading only from
result(all documented usage prior to 0.5.1) is completely unaffected.Test plan
initializeinitializebundle exec rspec— 770 examples, 0 failuresbundle exec rubocop— no offenses🤖 Generated with Claude Code