Adam Pallozzi

Results 11 issues of Adam Pallozzi

**Describe the bug** Create a test worker with these options: ``` Class TestWorker include Sidekiq::Worker sidekiq_options lock: :while_executing, on_conflict: :reject, lock_timeout: 0 def perform start_time = Time.now 30.times do |i|...

Hi, Firstly, thanks for the great gem. I have been having some issues with keys getting stuck and I've been trying to find a good solution. In the process, I...

The bullet_train-roles gem requires this module to be included in the User model. We didn't notice it was missing before because we were accidentally overloading the methods it adds in...

I'm using the new turbo page refresh action with turbo morphing. When the page is morphed, it undoes the changes made by local_time in the DOM. The fix was to...

The Roles::User module could be named better. It will often be a User, however we're really wanting to include this module in any class that could be the end owner...

When doing `membership.roles = [Role.admin]` we should automatically save the change to make it behave more like Rails' has_many :through association. It will also make upgrading easier because existing Bullet...

Local variables passed to a partial aren't working as expected unless the render call includes a block. For example, when doing: `` The title variable is not available via `partial.title`....

The web BridgeComponent `connect` event fires when the element appears on a page. However, if this happens on a background tab, the native BridgeComponent will ignore any messages sent because...

This fixes #33 The basic change here is not ignoring the `connect` event even if the page is not yet active. The issue with ignoring the `connect` event is that...