Edouard CHIN
Edouard CHIN
The travis matrix is becoming exponentially bigger on each ActiveSupport release (the matrix consist of 41 elements right now). Is there any reason we want to keep support for activesupport...
Use Omniauth.allowed_methods' as routing verbs for the auth path: - ### Context Since version 2.0.0, Omniauth no longer recognizes `GET` request on the auth path (`/users/auth/`). `POST` is the only...
When running `bundle update xxx --conservative` bootboot should only update the xxx dependency in the Gemfile_next.lock, not subdependencies of xxx
If the Gemfile.lock got updated by someone running `bundle lock --update my_gem`, bootboot isn't able to update the Gemfile_next.lock because the Bundler `after-install-all` hook is not triggered by Bundler. Second...
When writing the Gemfile_next.lock snapshot, we resolve the dependencies remotely https://github.com/Shopify/bootboot/blob/master/lib/bootboot/gemfile_next_auto_sync.rb#L56 this is unnecessary as all the gems should already have been fetched. Resolving the dependencies locally with `Bundler::Definition#resolve_with_cache` https://github.com/bundler/bundler/blob/a63a39d738865665f714f179fe42dd10006da26d/lib/bundler/definition.rb#L148...
Hi 👋 ! Thanks for your work on maintaining Puma! - ### Problem The feature to manually set the "rack.url_scheme" header with Puma's `rack_url_scheme` option (introduced in commit https://github.com/puma/puma/commit/32852f715af9e6eb809284d910e647b8fd6e2ea6) has...
Fix `get_boolean_pragma` comparison: - ### Problem `get_boolean_pragma` always returns true because the value returned from the db is an Int not a String. cc/ @rafaelfranca @casperisfine
Useful when you don't really know when the todo comes to expiration but want to be reminded every so often
Right now the slack message say in which file the TODO is, but doesn't tell in what project. We should link provide a direct link to github
- ### Context The Tagged Logging functionality has been a source of a few issues over the years, especially when combined with the broadcasting feature. Initializating a Tagged Logger was...