Cyril Duchon-Doris

Results 93 issues of 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...

![Screenshot 2022-06-04 at 14 16 48](https://user-images.githubusercontent.com/7388889/171998578-f2ae0818-ffc7-460d-8f4b-d145c445ee5b.png) 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 ![Screenshot 2020-05-11 at 22 16 05](https://user-images.githubusercontent.com/7388889/81607514-19e55b00-93d5-11ea-9600-56b45f1a5c0e.png) 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 ?

support
faq

``` 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...

enhancement
discussion