Jarrad M
Jarrad M
> Sinatra 4 has been out for a while FYI Upgrading sinatra to version 4 appears to resolve this issue as well. I'm still testing the rails upgrade just to...
> Does it work with web packer? I'm currently using it on a production app with webpacker, but the library's assets are still being provided by sprockets, unfortunately.
@Amm1r-IT to use the changes for this PR you can either reference my repository in your gemfile: ```Ruby gem 'best_in_place', github: 'JDrizzy/best_in_place' ``` Or, fork your own copy and reference...
> BTW I tried `config.active_record.encryption.encrypt_fixtures = true` and `ActiveRecord::Encryption.config.encrypt_fixtures = true` in `test.rb`. None has worked. Confirming this doesn't work for me either. Using the re-creation script attached below, I...
Debugging this further, I realised I've got the above scenario wrong. The test case provided is creating a second record due to the absent `primaryKey` schema configuration, and the list...
Raised `Invalid request parameters` errors using `application/x-www-form-urlencoded` as content type
Following on from [setting a limit inside the app](https://github.com/rack/rack/issues/2326#issuecomment-2864365944), would the following middleware that changes these limits based on paths configured be a good idea? e.g. ```Ruby # lib/middleware/custom_path_query_parser.rb #...