Skip to content

Conversation

@rsmithlal
Copy link
Member

Summary

Describe the change and the motivation.

Checklist

  • Tests added/updated and passing (bin/ci).
  • Lint and security checks (rubocop, brakeman, bundler-audit).
  • Documentation updated under docs/ describing new/changed functionality.
  • Mermaid diagrams (docs/*.mmd) updated to reflect changes.
  • Rendered PNGs regenerated with bin/render_diagrams and committed.
  • For DB changes, included any needed backfills/dedupes and noted risks.

Screenshots / Diagrams

If applicable, include screenshots or link to updated diagrams.

Notes

Anything reviewers should be aware of (migration order, flags, feature toggles).

@rsmithlal rsmithlal marked this pull request as ready for review September 3, 2025 20:07
@rsmithlal rsmithlal merged commit c6bc523 into main Sep 3, 2025
11 of 12 checks passed
@rsmithlal rsmithlal deleted the fix/requires branch September 3, 2025 20:07
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codex Review: Here are some suggestions.

Reply with @codex fix comments to fix any unresolved comments.

About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you open a pull request for review, mark a draft as ready, or comment "@codex review". If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex fix this CI failure" or "@codex address that feedback".

Comment on lines 1 to +3
# frozen_string_literal: true

# require 'simple_calendar/calendar_helper'

require_dependency 'simple_calendar/calendar_helper'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P1] Reintroduces missing simple_calendar helper file

The helper now calls require_dependency 'simple_calendar/calendar_helper', but the simple_calendar gem does not expose a simple_calendar/calendar_helper.rb file. This explicit require was previously removed (see earlier commit message) because it raises LoadError: cannot load such file -- simple_calendar/calendar_helper when the helper is eager loaded in production. Adding the dependency again will bring that boot-time failure back. Loading the gem via require 'simple_calendar' in the engine is sufficient, so this extra require should be dropped.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants