Peter Krutz
Peter Krutz
Hey there fellow Rubyist, thanks for making this available. I noticed a difference in the way inflected handles `parameterize` on strings, specifically the separator. ActiveSupport parameterize https://api.rubyonrails.org/classes/ActiveSupport/Inflector.html#method-i-parameterize `parameterize(string, separator: "-",...
I'm using devise_token_auth from master `8f44a8c66fd772b2d33be4ba187c0b1a47caba2a`. I've been on master for awhile now, I just upgraded from `798255ee7e3fee5cfa2fdc519fd90e281bd9b6f5` which was working as expected. Now I'm seeing this error: ``` 1)...
What's the right way to describe nested multipart form data? It looks like it was added back in 2017: https://github.com/domaindrivendev/rswag/pull/54 But has since been removed/simplified. It seems like I have...
We are using [Tailwind Typography](https://github.com/tailwindlabs/tailwindcss-typography) in conjunction with paged.js to generate PDFs. After upgrading to Typography `0.5.10`, we are getting this error: ``` paged.polyfill.js:30815 Uncaught (in promise) DOMException: Failed to...
If you have a form inside a Modal component, and you select a result from Google Chrome autofill, it causes the modal to close. Using the example https://github.com/excid3/tailwindcss-stimulus-components/blob/master/docs/modal.md#usage ``` ```...
Great plugin, thanks. I just noticed that the sorting is case sensitive, so I have to manually sort the records in order to get them to display correctly. Is there...
### Steps to reproduce Using ActiveStorage, Webpacker, and React Router. Setup Rails routing for a catchall route ``` get '*path', controller: 'react', action: 'index', as: :react ``` ### Expected behavior...
I was trying to replace esbuild with bun by running the installer: ``` ./bin/rails javascript:install:bun ``` but I got this error: ``` Add ability to diff lockb to .gitattributes rails...
From the docs: >You'll have two of these shims on your path: google-chrome and google-chrome-$GOOGLE_CHROME_CHANNEL. They both point to the binary of the selected channel. `google-chrome` was working until recently....
I'm using autosize with a Stimulus controller inside a Ruby on Rails application. I've been seeing an intermittent error related to autosize for little while, and I finally tracked it...