Cyril Duchon-Doris
Cyril Duchon-Doris
Ability to require the nvm tasks without adding automatically the nvm hooks
Maybe I'm doing things wrong, but I have defined some custom God notifier plugins, and I need to load those dependencies before starting god for the first time. But then,...
My LDAP has groups of objectType `posixGroup`, and they don't have `uniqueMember` attribute but instead `memberUid` attribute. Hence, `LDAP::Adapter.get_groups()` will fail because it had a hardcoded 'uniqueMember' filter (ldap/connection.rb line...
My nested_form works fine, EXCEPT when in my controller, I `render` (not `redirect_to`) a page that contains a nested_form, with some nested_fields already saved in the database. It duplicates (only...
 Do you know where to find the error logs ?
Currently the generators create ActiveRecord models. Doesn't go well with mongoid.
I have this on my CI  My project does not use GraphQL at all. Do you have any idea where this may come from...
I've had the same misunderstanding occur with different developers of my team and I believe it might be the case for a lot of people from the Ruby world: the...
Have you ever tried putting together SimpleEnum with Elasticsearch ? Any tips on how to make it work ?
``` Class Student delegate :type, to: school, prefix: :true end class School include SimpleEnum::Mongoid as_enum :type, [:business, :technical] end te(@student, school_type) # Doesn't seem to work ``` Taking care of...