]> git.notmuchmail.org Git - notmuch/commitdiff
ruby: Rename destroy to destroy!
authorAli Polatel <alip@exherbo.org>
Sat, 24 Sep 2011 12:25:24 +0000 (15:25 +0300)
committerAli Polatel <alip@exherbo.org>
Sat, 24 Sep 2011 12:25:24 +0000 (15:25 +0300)
According to the common Ruby function naming convention, potentially
dangerous functions or functions which operate on the object itself are
suffixed with an exclamation mark. Both of these are true for object
destroying functions.

The following modules are affected:
- Notmuch::Directory
- Notmuch::FileNames
- Notmuch::Query
- Notmuch::Threads
- Notmuch::Thread
- Notmuch::Messages
- Notmuch::Message
- Notmuch::Tags

bindings/ruby/directory.c
bindings/ruby/filenames.c
bindings/ruby/init.c
bindings/ruby/message.c
bindings/ruby/messages.c
bindings/ruby/query.c
bindings/ruby/tags.c
bindings/ruby/thread.c
bindings/ruby/threads.c

index 36dcb8bec22629d795862ce269772ea37b234842..5602c092cdeb2f04e69e0a496a28b3ddbd20c45d 100644 (file)
@@ -21,7 +21,7 @@
 #include "defs.h"
 
 /*
 #include "defs.h"
 
 /*
- * call-seq: DIR.destroy => nil
+ * call-seq: DIR.destroy! => nil
  *
  * Destroys the directory, freeing all resources allocated for it.
  */
  *
  * Destroys the directory, freeing all resources allocated for it.
  */
index faaa9a0ae15655b51ab26840bd1d32a6a54ebb45..f577173021b3755d8fcc1c03fd7c3082e6bfae65 100644 (file)
@@ -21,7 +21,7 @@
 #include "defs.h"
 
 /*
 #include "defs.h"
 
 /*
- * call-seq: FILENAMES.destroy => nil
+ * call-seq: FILENAMES.destroy! => nil
  *
  * Destroys the filenames, freeing all resources allocated for it.
  */
  *
  * Destroys the filenames, freeing all resources allocated for it.
  */
index c33059e2e68d8a770c2a750af5fc56b89d07c1fe..f5376fda114558f3c994d1c087c602cbfd4bf604 100644 (file)
@@ -193,7 +193,7 @@ Init_notmuch(void)
      */
     notmuch_rb_cDirectory = rb_define_class_under(mod, "Directory", rb_cData);
     rb_undef_method(notmuch_rb_cDirectory, "initialize");
      */
     notmuch_rb_cDirectory = rb_define_class_under(mod, "Directory", rb_cData);
     rb_undef_method(notmuch_rb_cDirectory, "initialize");
-    rb_define_method(notmuch_rb_cDirectory, "destroy", notmuch_rb_directory_destroy, 0); /* in directory.c */
+    rb_define_method(notmuch_rb_cDirectory, "destroy!", notmuch_rb_directory_destroy, 0); /* in directory.c */
     rb_define_method(notmuch_rb_cDirectory, "mtime", notmuch_rb_directory_get_mtime, 0); /* in directory.c */
     rb_define_method(notmuch_rb_cDirectory, "mtime=", notmuch_rb_directory_set_mtime, 1); /* in directory.c */
     rb_define_method(notmuch_rb_cDirectory, "child_files", notmuch_rb_directory_get_child_files, 0); /* in directory.c */
     rb_define_method(notmuch_rb_cDirectory, "mtime", notmuch_rb_directory_get_mtime, 0); /* in directory.c */
     rb_define_method(notmuch_rb_cDirectory, "mtime=", notmuch_rb_directory_set_mtime, 1); /* in directory.c */
     rb_define_method(notmuch_rb_cDirectory, "child_files", notmuch_rb_directory_get_child_files, 0); /* in directory.c */
@@ -206,7 +206,7 @@ Init_notmuch(void)
      */
     notmuch_rb_cFileNames = rb_define_class_under(mod, "FileNames", rb_cData);
     rb_undef_method(notmuch_rb_cFileNames, "initialize");
      */
     notmuch_rb_cFileNames = rb_define_class_under(mod, "FileNames", rb_cData);
     rb_undef_method(notmuch_rb_cFileNames, "initialize");
-    rb_define_method(notmuch_rb_cFileNames, "destroy", notmuch_rb_filenames_destroy, 0); /* in filenames.c */
+    rb_define_method(notmuch_rb_cFileNames, "destroy!", notmuch_rb_filenames_destroy, 0); /* in filenames.c */
     rb_define_method(notmuch_rb_cFileNames, "each", notmuch_rb_filenames_each, 0); /* in filenames.c */
     rb_include_module(notmuch_rb_cFileNames, rb_mEnumerable);
 
     rb_define_method(notmuch_rb_cFileNames, "each", notmuch_rb_filenames_each, 0); /* in filenames.c */
     rb_include_module(notmuch_rb_cFileNames, rb_mEnumerable);
 
@@ -217,7 +217,7 @@ Init_notmuch(void)
      */
     notmuch_rb_cQuery = rb_define_class_under(mod, "Query", rb_cData);
     rb_undef_method(notmuch_rb_cQuery, "initialize");
      */
     notmuch_rb_cQuery = rb_define_class_under(mod, "Query", rb_cData);
     rb_undef_method(notmuch_rb_cQuery, "initialize");
-    rb_define_method(notmuch_rb_cQuery, "destroy", notmuch_rb_query_destroy, 0); /* in query.c */
+    rb_define_method(notmuch_rb_cQuery, "destroy!", notmuch_rb_query_destroy, 0); /* in query.c */
     rb_define_method(notmuch_rb_cQuery, "sort", notmuch_rb_query_get_sort, 0); /* in query.c */
     rb_define_method(notmuch_rb_cQuery, "sort=", notmuch_rb_query_set_sort, 1); /* in query.c */
     rb_define_method(notmuch_rb_cQuery, "to_s", notmuch_rb_query_get_string, 0); /* in query.c */
     rb_define_method(notmuch_rb_cQuery, "sort", notmuch_rb_query_get_sort, 0); /* in query.c */
     rb_define_method(notmuch_rb_cQuery, "sort=", notmuch_rb_query_set_sort, 1); /* in query.c */
     rb_define_method(notmuch_rb_cQuery, "to_s", notmuch_rb_query_get_string, 0); /* in query.c */
@@ -231,7 +231,7 @@ Init_notmuch(void)
      */
     notmuch_rb_cThreads = rb_define_class_under(mod, "Threads", rb_cData);
     rb_undef_method(notmuch_rb_cThreads, "initialize");
      */
     notmuch_rb_cThreads = rb_define_class_under(mod, "Threads", rb_cData);
     rb_undef_method(notmuch_rb_cThreads, "initialize");
-    rb_define_method(notmuch_rb_cThreads, "destroy", notmuch_rb_threads_destroy, 0); /* in threads.c */
+    rb_define_method(notmuch_rb_cThreads, "destroy!", notmuch_rb_threads_destroy, 0); /* in threads.c */
     rb_define_method(notmuch_rb_cThreads, "each", notmuch_rb_threads_each, 0); /* in threads.c */
     rb_include_module(notmuch_rb_cThreads, rb_mEnumerable);
 
     rb_define_method(notmuch_rb_cThreads, "each", notmuch_rb_threads_each, 0); /* in threads.c */
     rb_include_module(notmuch_rb_cThreads, rb_mEnumerable);
 
@@ -242,7 +242,7 @@ Init_notmuch(void)
      */
     notmuch_rb_cMessages = rb_define_class_under(mod, "Messages", rb_cData);
     rb_undef_method(notmuch_rb_cMessages, "initialize");
      */
     notmuch_rb_cMessages = rb_define_class_under(mod, "Messages", rb_cData);
     rb_undef_method(notmuch_rb_cMessages, "initialize");
-    rb_define_method(notmuch_rb_cMessages, "destroy", notmuch_rb_messages_destroy, 0); /* in messages.c */
+    rb_define_method(notmuch_rb_cMessages, "destroy!", notmuch_rb_messages_destroy, 0); /* in messages.c */
     rb_define_method(notmuch_rb_cMessages, "each", notmuch_rb_messages_each, 0); /* in messages.c */
     rb_define_method(notmuch_rb_cMessages, "tags", notmuch_rb_messages_collect_tags, 0); /* in messages.c */
     rb_include_module(notmuch_rb_cMessages, rb_mEnumerable);
     rb_define_method(notmuch_rb_cMessages, "each", notmuch_rb_messages_each, 0); /* in messages.c */
     rb_define_method(notmuch_rb_cMessages, "tags", notmuch_rb_messages_collect_tags, 0); /* in messages.c */
     rb_include_module(notmuch_rb_cMessages, rb_mEnumerable);
@@ -254,7 +254,7 @@ Init_notmuch(void)
      */
     notmuch_rb_cThread = rb_define_class_under(mod, "Thread", rb_cData);
     rb_undef_method(notmuch_rb_cThread, "initialize");
      */
     notmuch_rb_cThread = rb_define_class_under(mod, "Thread", rb_cData);
     rb_undef_method(notmuch_rb_cThread, "initialize");
-    rb_define_method(notmuch_rb_cThread, "destroy", notmuch_rb_thread_destroy, 0); /* in thread.c */
+    rb_define_method(notmuch_rb_cThread, "destroy!", notmuch_rb_thread_destroy, 0); /* in thread.c */
     rb_define_method(notmuch_rb_cThread, "thread_id", notmuch_rb_thread_get_thread_id, 0); /* in thread.c */
     rb_define_method(notmuch_rb_cThread, "total_messages", notmuch_rb_thread_get_total_messages, 0); /* in thread.c */
     rb_define_method(notmuch_rb_cThread, "toplevel_messages", notmuch_rb_thread_get_toplevel_messages, 0); /* in thread.c */
     rb_define_method(notmuch_rb_cThread, "thread_id", notmuch_rb_thread_get_thread_id, 0); /* in thread.c */
     rb_define_method(notmuch_rb_cThread, "total_messages", notmuch_rb_thread_get_total_messages, 0); /* in thread.c */
     rb_define_method(notmuch_rb_cThread, "toplevel_messages", notmuch_rb_thread_get_toplevel_messages, 0); /* in thread.c */
@@ -272,7 +272,7 @@ Init_notmuch(void)
      */
     notmuch_rb_cMessage = rb_define_class_under(mod, "Message", rb_cData);
     rb_undef_method(notmuch_rb_cMessage, "initialize");
      */
     notmuch_rb_cMessage = rb_define_class_under(mod, "Message", rb_cData);
     rb_undef_method(notmuch_rb_cMessage, "initialize");
-    rb_define_method(notmuch_rb_cMessage, "destroy", notmuch_rb_message_destroy, 0); /* in message.c */
+    rb_define_method(notmuch_rb_cMessage, "destroy!", notmuch_rb_message_destroy, 0); /* in message.c */
     rb_define_method(notmuch_rb_cMessage, "message_id", notmuch_rb_message_get_message_id, 0); /* in message.c */
     rb_define_method(notmuch_rb_cMessage, "thread_id", notmuch_rb_message_get_thread_id, 0); /* in message.c */
     rb_define_method(notmuch_rb_cMessage, "replies", notmuch_rb_message_get_replies, 0); /* in message.c */
     rb_define_method(notmuch_rb_cMessage, "message_id", notmuch_rb_message_get_message_id, 0); /* in message.c */
     rb_define_method(notmuch_rb_cMessage, "thread_id", notmuch_rb_message_get_thread_id, 0); /* in message.c */
     rb_define_method(notmuch_rb_cMessage, "replies", notmuch_rb_message_get_replies, 0); /* in message.c */
@@ -300,7 +300,7 @@ Init_notmuch(void)
      */
     notmuch_rb_cTags = rb_define_class_under(mod, "Tags", rb_cData);
     rb_undef_method(notmuch_rb_cTags, "initialize");
      */
     notmuch_rb_cTags = rb_define_class_under(mod, "Tags", rb_cData);
     rb_undef_method(notmuch_rb_cTags, "initialize");
-    rb_define_method(notmuch_rb_cTags, "destroy", notmuch_rb_tags_destroy, 0); /* in tags.c */
+    rb_define_method(notmuch_rb_cTags, "destroy!", notmuch_rb_tags_destroy, 0); /* in tags.c */
     rb_define_method(notmuch_rb_cTags, "each", notmuch_rb_tags_each, 0); /* in tags.c */
     rb_include_module(notmuch_rb_cTags, rb_mEnumerable);
 }
     rb_define_method(notmuch_rb_cTags, "each", notmuch_rb_tags_each, 0); /* in tags.c */
     rb_include_module(notmuch_rb_cTags, rb_mEnumerable);
 }
index 49dbace3afec546596fc15e117354f16b031689f..f84ed925cbc897afdb65e8113c8bdc3264f99c72 100644 (file)
@@ -21,7 +21,7 @@
 #include "defs.h"
 
 /*
 #include "defs.h"
 
 /*
- * call-seq: MESSAGE.destroy => nil
+ * call-seq: MESSAGE.destroy! => nil
  *
  * Destroys the message, freeing all resources allocated for it.
  */
  *
  * Destroys the message, freeing all resources allocated for it.
  */
index 35b5d146b06a9824bf421e3f25c330c23b45db7b..faf41a3ba02561bb5653daa479be98fdb386aec1 100644 (file)
@@ -21,7 +21,7 @@
 #include "defs.h"
 
 /*
 #include "defs.h"
 
 /*
- * call-seq: MESSAGES.destroy => nil
+ * call-seq: MESSAGES.destroy! => nil
  *
  * Destroys the messages, freeing all resources allocated for it.
  */
  *
  * Destroys the messages, freeing all resources allocated for it.
  */
index ef9e1a077b28ddbbb31e33fde16fe1e584b40e3d..6a70f192bbd06de0a2206fd7af64afee4b444642 100644 (file)
@@ -21,7 +21,7 @@
 #include "defs.h"
 
 /*
 #include "defs.h"
 
 /*
- * call-seq: QUERY.destroy => nil
+ * call-seq: QUERY.destroy! => nil
  *
  * Destroys the query, freeing all resources allocated for it.
  */
  *
  * Destroys the query, freeing all resources allocated for it.
  */
index d7cd941d3bdba825d29f771114d158c61d7327f9..f0a2f45ec048ad08f122d0a08ede3d50ffa53342 100644 (file)
@@ -21,7 +21,7 @@
 #include "defs.h"
 
 /*
 #include "defs.h"
 
 /*
- * call-seq: TAGS.destroy => nil
+ * call-seq: TAGS.destroy! => nil
  *
  * Destroys the tags, freeing all resources allocated for it.
  */
  *
  * Destroys the tags, freeing all resources allocated for it.
  */
index e5c873667a20ce05973b7b30cf0a9e748ee51553..d10c924d5c707647ef7741ecdd4084375df95048 100644 (file)
@@ -21,7 +21,7 @@
 #include "defs.h"
 
 /*
 #include "defs.h"
 
 /*
- * call-seq: THREAD.destroy => nil
+ * call-seq: THREAD.destroy! => nil
  *
  * Destroys the thread, freeing all resources allocated for it.
  */
  *
  * Destroys the thread, freeing all resources allocated for it.
  */
index abd51212664c0a10c5b58b34475e049419fba288..ccf59f8e9b37a824a90d067b776cc2456f6e6840 100644 (file)
@@ -21,7 +21,7 @@
 #include "defs.h"
 
 /*
 #include "defs.h"
 
 /*
- * call-seq: THREADS.destroy => nil
+ * call-seq: THREADS.destroy! => nil
  *
  * Destroys the threads, freeing all resources allocated for it.
  */
  *
  * Destroys the threads, freeing all resources allocated for it.
  */