recurring_select
recurring_select copied to clipboard
Release with Rails 7.1+ support
Can you release a version with support for Rails 7.1. The latest commit 5dd3177
appears to work for me.
Background:
After upgrading to Rails 7.1 I got the below error when using the f.select_recurring
form helper:
undefined method `options_for_select' for #<RecurringSelectHelper::RecurringSelectTag
``
After debugging it seems the problem is that `ActionView::Helpers::FormOptionsHelper` is not included in `RecurringSelectHelper::RecurringSelectTag` for some reason.
I tested the latest commit on `main` (`5dd3177`) and that seems to work. I assume something in or after https://github.com/gregschmit/recurring_select/pull/166 fixed it.
Thanks!