Moncef Belyamani
Moncef Belyamani
@inunotaisho It's not a matter of age or time. It depends on the combination of things you installed and set up on your computer. Over the past 11 years, I've...
There are many factors that can affect Ruby installation on a Mac. The solution depends on the exact state of your development setup. This is why a solution that works...
@jzakiya Homebrew works on Linux too: https://docs.brew.sh/Homebrew-on-Linux The basic idea is the same. You want to point to the specific path where the tools (like OpenSSL) are installed.
There are several things going on here that are conflicting with each other and causing Ruby installation to fail 1. It looks like you're using both Homebrew and MacPorts. They're...
This is one of the reasons I don't recommend installing cocoapods with Homebrew. Instead, I highly recommend installing a newer version of Ruby using a **version manager** (such as chruby,...
@mesbahmilad This can be solved by overriding the Devise RegistrationsController in your app (or any other controller where you want to enforce 2FA), and adding a `before_action`, such as: ```...
I'm running into the same issue, and in my case, I'm overriding `after_resetting_password_path_for(resource)` in the Devise `passwords_controller` to take the user to the `show` action of the `two_factor_authentication_controller`. However, I...
What we ended up doing is setting `config.sign_in_after_reset_password = false` in the Devise config. This means the user does not get automatically signed in after resetting their password. They have...
Any updates on this issue?
@carsomyr Was this supposed to be fixed in 1.0.0? I'm still seeing the same error `uninitialized constant Sprockets::DigestUtils`.