You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix doctor rake task LoadError with excluded task_helpers
The doctor.rake task was trying to require "../../rakelib/task_helpers"
but the rakelib directory is excluded from gem packaging in the gemspec.
This caused LoadError when using the packaged gem.
Changes:
- Remove require_relative "../../rakelib/task_helpers" from doctor.rake
- Remove include ReactOnRails::TaskHelpers (unused in the task)
- Add test to ensure rake file loads without missing dependencies
The doctor task functionality is preserved and works correctly without
the excluded TaskHelpers module.
Fixes the issue introduced in commit 27dba50 where doctor.rake was added
with a reference to the excluded rakelib directory.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments