Dan Jensen
Dan Jensen
@coliff what do you think of these changes?
The behavior was actually still a little buggy. Specifically, the button could get out of sync, so clicking would have no effect. This fixes the bugginess by eliminating the nested...
@daniellockyer hopefully I'm understanding this problem correctly. What are your thoughts on this proposal?
After running into this same problem, just found it can be solved by stubbing the `controller_name` method on `ActionView::TestCase::TestController`. __Why:__ Rspec uses `ActionView::TestCase::TestController` as a generic controller for all view...
@codebycliff just wanted to draw attention to this small addition to the README. Hopefully an easy merge!
@albus522 good call. And we could even consider this a bugfix, because Devise shouldn't have been choosing a different key than the application. Seems like bumping the version to 4.10...
@soartec-lab thanks for submitting this PR 👍 If you weren't aware, ~~PR #5634~~ __PR #5645__ was submitted to solve the same problem you solved here. However, that one follows a...
@dillonhafer just want to draw attention to this PR from June. Hopefully an easy merge.
I just updated this PR to use `--headless=new`. Originally, this PR implemented the syntax used by [Capybara's `selenium_chrome_headless` driver](https://github.com/teamcapybara/capybara/blob/master/lib/capybara/registrations/drivers.rb#L35) (without `...=new`), because that was compatible with Chrome versions before 109....
Unfortunately if you `require 'active_support/all'` and declare a `Time.zone` that observes daylight savings time (like `Pacific Time (US & Canada)`), your cron execution times __will only be correct for part...