Jerome Dalbert

Results 83 comments of Jerome Dalbert

> In the original reproduction repository I give several examples of how a gem can be added to a Gemfile. Just for reference for anyone else reading the issue, here...

> All of these would work the same if it weren't for the `local` overrides I added. [...] > > `bundler` is being inconsistent in how it loads gemspecs [...]....

From my understanding of this thread, it seems like the remaining action items are: - Documenting that all platforms are added for new lockfiles, but not for existing lockfiles, as...

I'm glad to see that this issue is being tackled. I have needed `ENV['KAMAL_DESTINATION']` in my `config/deploy.yml` so I can do `Dotenv.load(".kamal/secrets.#{ENV['KAMAL_DESTINATION']}")` or something similar with `Dotenv.parse`. This PR would...

I can reproduce the issue on Rails 8 as well. Details ```ruby # frozen_string_literal: true require "bundler/inline" gemfile(true) do source "https://rubygems.org" gem "rails", "~> 8.0.0" gem "sqlite3" end require "active_record"...

I am able to repro the issue with the latest Rails main branch. This is a code or documentation problem: there is a discrepancy between `TimeWithZone#time`'s documentation and how it...

As I [mentioned](https://github.com/rails/rails/pull/45558#issuecomment-2293238974) in the PR, I think you should rebase your PR with the latest master so you can run tests on the whole codebase. Because right now we...

If this PR still relevant? If so, the changes look pretty good, but maybe it would be worth kicking off the CI status checks for it? I may be wrong,...

> But the bigger issue seems to be that after that happens, something funky occurs with stdin. It starts swallowing keys etc. So we'd need to get to the bottom...

I found a few minor inconveniences when playing around with `bin/dev`. - the foreman run processes insert their exit output even after quitting the web server: ``` ~/c/tmp/bindev/myapptailwind (main ✔)$...