aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/ruby/init.c
diff options
context:
space:
mode:
authorGravatar Ali Polatel <alip@exherbo.org>2011-01-10 16:02:43 +0200
committerGravatar Ali Polatel <alip@exherbo.org>2011-01-25 12:03:37 +0200
commit02369d031c1499e015db1736bd259d314d39b8cf (patch)
tree1546fc803e0761bbd6590af277cba6fb7c4c01be /bindings/ruby/init.c
parented38940323ba80d0136688405cbd923fa088d706 (diff)
ruby: Add wrappers for maildir sync. interface
New wrappers: notmuch_message_maildir_flags_to_tags(): MESSAGE.maildir_flags_to_tags notmuch_message_tags_to_maildir_flags(): MESSAGE.tags_to_maildir_flags
Diffstat (limited to 'bindings/ruby/init.c')
-rw-r--r--bindings/ruby/init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bindings/ruby/init.c b/bindings/ruby/init.c
index 63ab205e..4a63ba07 100644
--- a/bindings/ruby/init.c
+++ b/bindings/ruby/init.c
@@ -273,6 +273,8 @@ Init_notmuch(void)
rb_define_alias(notmuch_rb_cMessage, "<<", "add_tag");
rb_define_method(notmuch_rb_cMessage, "remove_tag", notmuch_rb_message_remove_tag, 1);
rb_define_method(notmuch_rb_cMessage, "remove_all_tags", notmuch_rb_message_remove_all_tags, 0);
+ rb_define_method(notmuch_rb_cMessage, "maildir_flags_to_tags", notmuch_rb_message_maildir_flags_to_tags, 0);
+ rb_define_method(notmuch_rb_cMessage, "tags_to_maildir_flags", notmuch_rb_message_tags_to_maildir_flags, 0);
rb_define_method(notmuch_rb_cMessage, "freeze", notmuch_rb_message_freeze, 0);
rb_define_method(notmuch_rb_cMessage, "thaw", notmuch_rb_message_thaw, 0);