John

Results 119 comments of John

I'm not sure if this is something you'd be interested in adding to this library, but a killer feature I need (which I implemented in [rSchedule](https://gitlab.com/john.carroll.p/rschedule)) is the ability to...

For @rofrol and others, I can't immediately find the comment, but I seem to remember that @davidgoli mentioned he no longer uses rrule and is no longer actively working on...

@stclairdaniel rrulejs is largely based on the iCal spec. `dtstart` is an rrule property out of necessity. Many rrules can only be interpreted in the context of their dtstart. For...

> The documentation indicates that an array should be valid input for the rel_class I assume you're referring to the [comments in the source code](https://github.com/neo4jrb/neo4j/blob/master/lib/neo4j/active_node/has_n.rb#L354-L356)? I had never noticed reference...

Not 100% sure I understand the question, but to add to cheerfulstoic's response: You can create a scopes on your `Tutorial` model such as ``` scope :formation, -> do query_as(:tutorial)....

@cheerfulstoic would `has_many :out, :technologies, type: "TEACH|:REQUIRE"` break assignment? (i.e. `model.technologies

So you're basically trying to load a model `with_associations()` but you're finding that the `with_associations()` API is too limiting? Or are you not familiar with the `with_associations()` method? (It looks...

I think the [contributing file](https://github.com/neo4jrb/neo4j/blob/master/CONTRIBUTING.md) explains it all. If I remember correctly, it's not really any different than setting up a rails app (which might not be a helpful analogy,...

Ah, so I'm *guessing* that the problem is that the call to `property` is defining the writer in the `Person` model itself, not in the super class. I'm not sure...

Starting in the ActiveNode association's section might be easier: https://neo4jrb.readthedocs.io/en/9.2.x/ActiveNode.html#associations. I've never thought about it before, but the docs might be best read in order. Also, FYI - You need...