Stanislaw Klajn

Results 6 comments of Stanislaw Klajn

Not sure if this is the best place to ask this question: is there any estimate of v4.0 release? It seems version 3.4 is not handling babel.config.js returning function any...

Issue is caused by `Devise::SecretKeyFinder#find` method. Devise is currently trying to find a secret key in `credentials`, `secrets` and `config` before checking the application itself, deprecation warning is triggered on...

For those looking for an immediate fix, it is possible to monkey_patch around the issue. Add the following in your initializers/devise.rb: ``` class Devise::SecretKeyFinder def find @application.secret_key_base end end ```

Just hit the same issue - the problem seems to be caused by chartkick destroying all charts on turbo:before-render. It seems that inline script runs before that hooks, so new...

It might be the old topic, however I managed to force it (proper word) to work with rails 4.1+ - https://github.com/BroiSatse/grouped_validations

Also happens to me. In my case it is that I have an encrypted home folder, that restricts file names to 143bytes and Paperclip gem can generate longer names, changing...