Ryan Bates

Results 175 comments of Ryan Bates

@tian-im I'm unable to try Wallaby 7.0.0.beta1 with Rails 7.1.2 since it isn't compatible. See: ``` Because wallaby >= 7.0.0.beta1 depends on wallaby-active_record = 0.3.0.beta1 and wallaby-active_record >= 0.3.0.beta1 depends...

@tian-im here's an example Rails 7.1.2 app that doesn't work with the custom decorator. https://github.com/ryanb/wallaby-rails-7-1-2 Run `bundle`, `rails db:migrate` and `rails s` and navigate to http://localhost:3000/admin/blogs and it will complain...

@tian-im btw, I've had no issues with Rails 7.1.1, just 7.1.2.

@tian-im any update on this? Are you able to duplicate the issue?

@tian-im thanks, I missed that message about it being fixed in `wallaby-core`. I'll try it out.

This is fixed btw, forgot to mention.

@tian-im this issue has come back in 7 beta2. Any ideas? ``` NoMethodError - undefined method `intercom_url' for #: 15:26:48 web.1 | app/views/support_admin/accounts/_resource_actions.html.erb:1 15:26:48 web.1 | app/controllers/concerns/slow_request_concern.rb:13:in `notify_slow_requests' 15:26:48 web.1...

@tian-im any thoughts on this one? I think it's the only blocker on adopting 7.0 beta 2. Thanks.

@tian-im Thanks for looking into this. Found the issue. I had this line in the `AccountDecorator` ``` alias_method :extend_trial_metadata_of, :form_metadata_of ``` Seems `form_metadata_of` method was removed so this was raising...

@lgarron > Since you made your function async, I think you meant to await? This bug is specifically for the case of generating screenshots asynchronous . I'm reproducing a more...