David Angulo

Results 25 comments of David Angulo

#843 Will fix this issue. In my case, I currently used my forked version: https://github.com/dcangulo/annotate_models

@MarcoPonchia I did encounter this problem today, on previous versions, I just run `bundle exec annotate` and everything updates. But on version 3.X, this seems not the case anymore, but...

@Tao-Galasse Sorry I don't know much about that. But my `auto_annotate_models.rake` works just fine and I'm using `gem 'annotate', '~> 3.1', '>= 3.1.1'` version.

@andrewek @drwl @Vasfed What is the status here? What's stopping us from simply changing `rake routes` to `rails routes`, which for me works on Rails 6.1.0.rc1. Is it backward compatibility?...

@overdrivemachines If you're not using ActionMailbox nor ActiveStorage you can disable their routes using this method: https://stackoverflow.com/a/58041853/9375533

@overdrivemachines I think it just removes the routes, if you want to disable them completely you need to unrequire them. Instead of: ```ruby require 'rails/all' ``` You can do: ```ruby...

@overdrivemachines Oh, I see. We just have a different use case where I don't use both ActiveStorage and ActionMailbox so I can just safely remove their route for it not...

I use the following patch file to disable pin/pattern. Filename: `react-native-simple-biometrics+1.5.0.patch` ```diff diff --git a/node_modules/react-native-simple-biometrics/android/src/main/java/com/reactnativesimplebiometrics/SimpleBiometricsModule.java b/node_modules/react-native-simple-biometrics/android/src/main/java/com/reactnativesimplebiometrics/SimpleBiometricsModule.java index d4c53a4..ab08598 100644 --- a/node_modules/react-native-simple-biometrics/android/src/main/java/com/reactnativesimplebiometrics/SimpleBiometricsModule.java +++ b/node_modules/react-native-simple-biometrics/android/src/main/java/com/reactnativesimplebiometrics/SimpleBiometricsModule.java @@ -23,8 +23,7 @@ public class SimpleBiometricsModule...