Jerome Dalbert
Jerome Dalbert
Fixes https://github.com/heartcombo/devise/issues/5705. Notes: - The `sign_in` and `sign_out` controller and integration test helpers all call `Devise::Mapping.find_scope!`, so that method seemed like a good place to lazy load routes if they...
## Environment - Ruby **3.3.2** - Rails **main (8.0.0.alpha)** - Devise **4.9.4** ## Current behavior When using the `sign_in` Devise test helper method in a controller or integration test, I...
Ref: https://github.com/rubygems/rubygems/issues/7799 ## What was the end-user or developer problem that led to this PR? The Bundler team [recommends](https://github.com/rubygems/rubygems/issues/7799#issuecomment-2192720316) using `add_dependency` for gems using Gemfiles, which is the default case...
Fixes https://github.com/rubygems/rubygems/issues/7774. ## What was the end-user or developer problem that led to this PR? `bundle gem mygem --test=none` generates a Gemfile with `gem "none", "~> "`. More generally, `bundle...
Reference: https://github.com/rubygems/guides/pull/370 ## Problem When adding a non-development dependency to a gemspec, it can be unclear what to use between `add_dependency` and `add_runtime_dependency`. Let me elaborate by doing a comparison...
### Describe the problem as clearly as you can When executing `bundle gem` for the second time with `--test=none`, tests are not generated, which is expected, but a "none" gem...
When using `-d destination`, at the moment you have to have a `deploy.destination.yml` file (along with a `deploy.yml` file), or you get a `ERROR (RuntimeError): Configuration file not found` error....
## Environment - Ruby **3.3.2** - Rails **main (8.0.0.alpha)** - Devise **4.9.4** ## Steps to reproduce Run the following bash commands (tested on macOS): ```bash rails new myapp --main cd...
When configuring Kamal 2's `deploy.yml` with a `false` boolean option in the proxy section, `kamal-proxy` errors out during deploy. ### Steps to repro Deploy a Rails main app (8.0.0.alpha) with...
### Problem `kamal app logs -f` doesn't work if the primary role is not "web". Steps to repro: - have `primary_role: worker` in `config/deploy.yml` - run `kamal app logs -f`...