Benjamin Fleischer
Benjamin Fleischer
@matthewd Does this meet your expectations for a feature PR per https://github.com/rails/rails/issues/34237#issuecomment-522204919 >>> I tackled that exact problem in a [POC over here](https://github.com/tbuehlmann/active_record-returning_attributes). It wasn't that simple as I had...
> With AFTER, I believe, we will need to perform UPDATE ... ourselves. huh, going to confirm if I'm doing it wrong in a bunch of places... https://www.postgresql.org/docs/current/sql-createtrigger.html huh, seems...
You'll need to include ImplicitRender, I believe
99% documentation and 1% require on first use e.g. see how Rails makes bcrypt a soft dep https://github.com/rails/rails/blob/98b2e8a4968827beb6460174c3caf13a33487921/activemodel/lib/active_model/secure_password.rb#L42-L89 ```ruby # To use +has_secure_password+, add bcrypt (~> 3.1.7) to your Gemfile:...
Yeah, if you want to support an adapter for other http clients, and want to use a gem for that, faraday is pretty standard. Otherwise, just need a consistent interface...
We rely heavily on the delayed class extensions as a pattern to easily run any function async. (I've have mixed feelings about it since I know what it does under...
I'm willing to do the work to extract the delayed extensions into a gem, but I'm not really interested in maintaining it, so not sure what good that does anyone.
I took a stab at extracting the delayed extensions in https://github.com/gemhome/sidekiq-delay_extensions/pull/1 Got one failing test, but most of the changes are bulk code wrangling. I haven't reviewed the full changeset...
Got tests passing. And happy enough with it to release as https://rubygems.org/gems/sidekiq-delay_extensions Only 6.4.0 and 6.4.1 right now
I have also thought about this like @giddie @cheerfulstoic have Unless there's a good argument against it, I would like this issue to be reflected in the guide. I mean,...