Re: [PATCH 1/3] ruby: add database.revision

2023-05-29 Thread David Bremner
Felipe Contreras writes: > + > +/* > + * call-seq: DB.revision => Array > + * > + * Returns the commutted database revision and UUID. typo. > + */ > +VALUE > +notmuch_rb_database_revision (VALUE self) > +{ > +notmuch_database_t *db; > +unsigned long rev; > +const char *uuid; > + > +

[PATCH 1/3] ruby: add database.revision

2023-03-31 Thread Felipe Contreras
Signed-off-by: Felipe Contreras --- bindings/ruby/database.c | 18 ++ bindings/ruby/defs.h | 3 +++ bindings/ruby/init.c | 1 + 3 files changed, 22 insertions(+) diff --git a/bindings/ruby/database.c b/bindings/ruby/database.c index b6de1254..4372afa1 100644 --- a/bindi