Renamed to the rblm namespace
authorMikael Hallendal <micke@imendio.com>
Wed, 09 Apr 2008 22:12:34 +0200
changeset 364 71e6639a924d
parent 363 6d53af6c3227
child 365 64b1c1c32d56
Renamed to the rblm namespace
bindings/ruby/rblm-connection.c
bindings/ruby/rblm-message.c
bindings/ruby/rblm.c
bindings/ruby/rblm.h
bindings/ruby/rlm-connection.c
bindings/ruby/rlm-message.c
bindings/ruby/rloudmouth.c
bindings/ruby/rloudmouth.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bindings/ruby/rblm-connection.c	Wed Apr 09 22:12:34 2008 +0200
@@ -0,0 +1,256 @@
+#include "rblm.h"
+#include "rblm-private.h"
+
+VALUE lm_cConnection;
+
+VALUE conn_set_server (VALUE self, VALUE server);
+
+static LmConnection *
+rb_lm_connection_from_ruby_object (VALUE obj)
+{
+	LmConnection *conn;
+
+	if (!rb_lm__is_kind_of (obj, lm_cConnection)) {
+		rb_raise (rb_eTypeError, "not a LmConnection");
+	}
+
+	Data_Get_Struct (obj, LmConnection, conn);
+
+	return conn;
+}
+
+void
+conn_mark (LmConnection *self)
+{
+}
+
+void
+conn_free (LmConnection *self)
+{
+	lm_connection_unref (self);
+}
+
+VALUE
+conn_allocate(VALUE klass)
+{
+	LmConnection *conn = lm_connection_new (NULL);
+
+	return Data_Wrap_Struct (klass, conn_mark, conn_free, conn);
+}
+
+VALUE
+conn_initialize (VALUE self, VALUE server, VALUE context)
+{
+	LmConnection *conn;
+
+	Data_Get_Struct (self, LmConnection, conn);
+
+	conn_set_server (self, server);
+
+	/* Set context */
+
+	return self;
+}
+
+static void
+open_callback (LmConnection *conn, gboolean success, gpointer user_data)
+{
+	rb_funcall((VALUE)user_data, rb_intern ("call"), 1,
+		   GBOOL2RVAL (success));
+}
+
+VALUE
+conn_open (int argc, VALUE *argv, VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+	VALUE         func;
+
+	rb_scan_args (argc, argv, "0&", &func);
+	if (NIL_P (func)) {
+		func = rb_block_proc ();
+	}
+
+	return GBOOL2RVAL (lm_connection_open (conn, open_callback, 
+					       (gpointer) func, NULL, NULL));
+}
+
+VALUE
+conn_close (VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	return GBOOL2RVAL (lm_connection_close (conn, NULL));
+}
+
+static void
+auth_callback (LmConnection *conn, gboolean success, gpointer user_data)
+{
+	rb_funcall((VALUE)user_data, rb_intern ("call"), 1,
+		   GBOOL2RVAL (success));
+}
+
+VALUE
+conn_auth (int argc, VALUE *argv, VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+	VALUE         name, password, resource, func; 
+
+	rb_scan_args (argc, argv, "21&", &name, &password, &resource, &func);
+	if (NIL_P (func)) {
+		func = rb_block_proc ();
+	}
+
+	return GBOOL2RVAL (lm_connection_authenticate (conn, 
+						       StringValuePtr (name),
+						       StringValuePtr (password), 
+						       StringValuePtr (resource),
+						       auth_callback,
+						       (gpointer) func, NULL,
+						       NULL));
+}
+
+VALUE
+conn_set_keep_alive_rate (VALUE self, VALUE rate)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	lm_connection_set_keep_alive_rate (conn, NUM2UINT (rate));
+
+	return Qnil;
+}
+
+/*
+ * VALUE
+conn_get_keep_alive_rate (VALUE self)
+{
+	LmConnection *connection;
+} */
+
+VALUE
+conn_is_open (VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	return GBOOL2RVAL (lm_connection_is_open (conn));
+}
+
+VALUE
+conn_is_authenticated (VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	return GBOOL2RVAL (lm_connection_is_authenticated (conn));
+}
+
+VALUE
+conn_get_server (VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	return rb_str_new2 (lm_connection_get_server (conn));
+}
+
+VALUE
+conn_set_server (VALUE self, VALUE server)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	if (!rb_respond_to (server, rb_intern ("to_s"))) {
+		rb_raise (rb_eArgError, "server should respond to to_s");
+	} else {
+		VALUE str_val = rb_funcall (server, rb_intern ("to_s"), 0);
+		lm_connection_set_server (conn, StringValuePtr (str_val));
+	}
+
+	return Qnil;
+}
+
+VALUE
+conn_get_jid (VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	return rb_str_new2 (lm_connection_get_jid (conn));
+}
+
+VALUE
+conn_set_jid (VALUE self, VALUE jid)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	if (!rb_respond_to (jid, rb_intern ("to_s"))) {
+		rb_raise (rb_eArgError, "jid should respond to to_s");
+	} else {
+		VALUE str_val = rb_funcall (jid, rb_intern ("to_s"), 0);
+		lm_connection_set_jid (conn, StringValuePtr (str_val));
+	}
+
+	return Qnil;
+}
+
+VALUE
+conn_get_port (VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	return UINT2NUM (lm_connection_get_port (conn));
+}
+
+VALUE
+conn_set_port (VALUE self, VALUE port)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	lm_connection_set_port (conn, NUM2UINT (port));
+
+	return Qnil;
+}
+
+VALUE
+conn_get_state (VALUE self)
+{
+	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
+
+	/* TODO: FIXME */
+	return Qnil;
+}
+
+void
+Init_lm_connection (VALUE lm_mLM)
+{
+	lm_cConnection = rb_define_class_under (lm_mLM, "Connection", 
+						rb_cObject);
+
+	rb_define_alloc_func (lm_cConnection, conn_allocate);
+
+	rb_define_method (lm_cConnection, "initialize", conn_initialize, 1);
+	rb_define_method (lm_cConnection, "open", conn_open, -1);
+	rb_define_method (lm_cConnection, "close", conn_close, 0);
+	rb_define_method (lm_cConnection, "authenticate", conn_auth, -1);
+	rb_define_method (lm_cConnection, "keep_alive_rate=", conn_set_keep_alive_rate, 1);
+	/* rb_define_method (lm_cConnection, "keep_alive_rate", conn_get_keep_alive_rate, 0); */
+	rb_define_method (lm_cConnection, "open?", conn_is_open, 0);
+	rb_define_method (lm_cConnection, "authenticated?", conn_is_authenticated, 0);
+	rb_define_method (lm_cConnection, "server", conn_get_server, 0);
+	rb_define_method (lm_cConnection, "server=", conn_set_server, 1);
+	rb_define_method (lm_cConnection, "jid", conn_get_jid, 0);
+	rb_define_method (lm_cConnection, "jid=", conn_set_jid, 1);
+	rb_define_method (lm_cConnection, "port", conn_get_port, 0);
+	rb_define_method (lm_cConnection, "port=", conn_set_port, 1);
+
+	/*
+	rb_define_method (lm_cConnection, "ssl", conn_get_ssl, 0);
+	rb_define_method (lm_cConnection, "ssl=", conn_set_ssl, 1);
+	rb_define_method (lm_cConnection, "proxy", conn_get_proxy, 0);
+	rb_define_method (lm_cConnection, "proxy=", conn_set_proxy, 1);
+	*/
+
+	/* Use one send message and check if there is a block passed? */
+	/*
+	rb_define_method (lm_cConnection, "send", conn_send, 1);
+	rb_define_method (lm_cConnection, "send_with_reply", conn_send_with_reply, -1);
+	rb_define_method (lm_cConnection, "send_raw", conn_send_raw, 1);
+	*/
+
+	rb_define_method (lm_cConnection, "state", conn_get_state, 0);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bindings/ruby/rblm-message.c	Wed Apr 09 22:12:34 2008 +0200
@@ -0,0 +1,102 @@
+#include "rblm.h"
+#include "rblm-private.h"
+
+/* How to handle type, sub_type and root node*/
+
+VALUE lm_cMessage;
+
+static LmMessage *
+rb_lm_message_from_ruby_object (VALUE obj)
+{
+	LmMessage *m;
+
+	if (!rb_lm__is_kind_of (obj, lm_cMessage)) {
+		rb_raise (rb_eTypeError, "not a LmMessage");
+	}
+
+	Data_Get_Struct (obj, LmMessage, m);
+
+	return m;
+}
+
+void
+msg_free (LmMessage *m)
+{
+	lm_message_unref (m);
+}
+
+VALUE
+msg_allocate (VALUE klass)
+{
+	return Data_Wrap_Struct (klass, NULL, msg_free, NULL);
+}
+
+VALUE
+msg_initialize (int argc, VALUE *argv, VALUE self)
+{
+	LmMessage  *m;
+	VALUE       to, type, sub_type;
+	char       *to_str = NULL;
+
+	rb_scan_args (argc, argv, "21", &to, &type, &sub_type);
+
+	/* To can be nil */
+	if (!NIL_P (to)) {
+		if (!rb_respond_to (to, rb_intern ("to_s"))) {
+			rb_raise (rb_eArgError, "to should respond to to_s");
+		} else {
+			VALUE str_val = rb_funcall (to, rb_intern ("to_s"), 0);
+			to_str = StringValuePtr (str_val);
+		}
+	} 
+
+	if (NIL_P (sub_type)) {
+		/* Without sub_type */
+		m = lm_message_new (to_str, NUM2INT (type));
+	} else {
+		m = lm_message_new_with_sub_type (to_str,
+						  NUM2INT (type),
+						  NUM2INT (sub_type));
+	}
+
+	DATA_PTR (self) = m;
+
+	return self;
+}
+
+VALUE
+msg_get_type (VALUE self)
+{
+	LmMessage *m = rb_lm_message_from_ruby_object (self);
+
+	return INT2NUM (lm_message_get_type (m));
+}
+
+VALUE
+msg_get_sub_type (VALUE self)
+{
+	LmMessage *m = rb_lm_message_from_ruby_object (self);
+
+	return INT2NUM (lm_message_get_sub_type (m));
+}
+
+VALUE
+msg_get_root_node (VALUE self)
+{
+	/* How to? */
+	return Qnil;
+}
+
+extern void 
+Init_lm_message (VALUE lm_mLM)
+{
+	lm_cMessage = rb_define_class_under (lm_mLM, "Message", rb_cObject);
+
+	rb_define_alloc_func (lm_cMessage, msg_allocate);
+	
+	rb_define_method (lm_cMessage, "initialize", msg_initialize, -1);
+	rb_define_method (lm_cMessage, "type", msg_get_type, 0);
+	rb_define_method (lm_cMessage, "sub_type", msg_get_sub_type, 0);
+	rb_define_method (lm_cMessage, "root_node", msg_get_root_node, 0);
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bindings/ruby/rblm.c	Wed Apr 09 22:12:34 2008 +0200
@@ -0,0 +1,13 @@
+#include "rblm.h"
+
+void
+Init_loudmouth (void)
+{
+	VALUE lm_mLM;
+	
+	lm_mLM = rb_define_module ("LM");
+
+	Init_lm_connection (lm_mLM);
+	Init_lm_message (lm_mLM);
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bindings/ruby/rblm.h	Wed Apr 09 22:12:34 2008 +0200
@@ -0,0 +1,13 @@
+#ifndef __RLM_H__
+#define __RLM_H__
+
+#include <ruby.h>
+#include <loudmouth/loudmouth.h> 
+#include <glib.h>
+
+extern void Init_loudmouth          (void);
+extern void Init_lm_connection      (VALUE lm_mLM);
+extern void Init_lm_message         (VALUE lm_mLM);
+
+#endif /* __RLM_H__ */
+
--- a/bindings/ruby/rlm-connection.c	Wed Apr 09 22:06:42 2008 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,255 +0,0 @@
-#include "rloudmouth.h"
-
-VALUE lm_cConnection;
-
-VALUE conn_set_server (VALUE self, VALUE server);
-
-static LmConnection *
-rb_lm_connection_from_ruby_object (VALUE obj)
-{
-	LmConnection *conn;
-
-	if (!rb_lm__is_kind_of (obj, lm_cConnection)) {
-		rb_raise (rb_eTypeError, "not a LmConnection");
-	}
-
-	Data_Get_Struct (obj, LmConnection, conn);
-
-	return conn;
-}
-
-void
-conn_mark (LmConnection *self)
-{
-}
-
-void
-conn_free (LmConnection *self)
-{
-	lm_connection_unref (self);
-}
-
-VALUE
-conn_allocate(VALUE klass)
-{
-	LmConnection *conn = lm_connection_new (NULL);
-
-	return Data_Wrap_Struct (klass, conn_mark, conn_free, conn);
-}
-
-VALUE
-conn_initialize (VALUE self, VALUE server, VALUE context)
-{
-	LmConnection *conn;
-
-	Data_Get_Struct (self, LmConnection, conn);
-
-	conn_set_server (self, server);
-
-	/* Set context */
-
-	return self;
-}
-
-static void
-open_callback (LmConnection *conn, gboolean success, gpointer user_data)
-{
-	rb_funcall((VALUE)user_data, rb_intern ("call"), 1,
-		   GBOOL2RVAL (success));
-}
-
-VALUE
-conn_open (int argc, VALUE *argv, VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-	VALUE         func;
-
-	rb_scan_args (argc, argv, "0&", &func);
-	if (NIL_P (func)) {
-		func = rb_block_proc ();
-	}
-
-	return GBOOL2RVAL (lm_connection_open (conn, open_callback, 
-					       (gpointer) func, NULL, NULL));
-}
-
-VALUE
-conn_close (VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	return GBOOL2RVAL (lm_connection_close (conn, NULL));
-}
-
-static void
-auth_callback (LmConnection *conn, gboolean success, gpointer user_data)
-{
-	rb_funcall((VALUE)user_data, rb_intern ("call"), 1,
-		   GBOOL2RVAL (success));
-}
-
-VALUE
-conn_auth (int argc, VALUE *argv, VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-	VALUE         name, password, resource, func; 
-
-	rb_scan_args (argc, argv, "21&", &name, &password, &resource, &func);
-	if (NIL_P (func)) {
-		func = rb_block_proc ();
-	}
-
-	return GBOOL2RVAL (lm_connection_authenticate (conn, 
-						       StringValuePtr (name),
-						       StringValuePtr (password), 
-						       StringValuePtr (resource),
-						       auth_callback,
-						       (gpointer) func, NULL,
-						       NULL));
-}
-
-VALUE
-conn_set_keep_alive_rate (VALUE self, VALUE rate)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	lm_connection_set_keep_alive_rate (conn, NUM2UINT (rate));
-
-	return Qnil;
-}
-
-/*
- * VALUE
-conn_get_keep_alive_rate (VALUE self)
-{
-	LmConnection *connection;
-} */
-
-VALUE
-conn_is_open (VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	return GBOOL2RVAL (lm_connection_is_open (conn));
-}
-
-VALUE
-conn_is_authenticated (VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	return GBOOL2RVAL (lm_connection_is_authenticated (conn));
-}
-
-VALUE
-conn_get_server (VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	return rb_str_new2 (lm_connection_get_server (conn));
-}
-
-VALUE
-conn_set_server (VALUE self, VALUE server)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	if (!rb_respond_to (server, rb_intern ("to_s"))) {
-		rb_raise (rb_eArgError, "server should respond to to_s");
-	} else {
-		VALUE str_val = rb_funcall (server, rb_intern ("to_s"), 0);
-		lm_connection_set_server (conn, StringValuePtr (str_val));
-	}
-
-	return Qnil;
-}
-
-VALUE
-conn_get_jid (VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	return rb_str_new2 (lm_connection_get_jid (conn));
-}
-
-VALUE
-conn_set_jid (VALUE self, VALUE jid)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	if (!rb_respond_to (jid, rb_intern ("to_s"))) {
-		rb_raise (rb_eArgError, "jid should respond to to_s");
-	} else {
-		VALUE str_val = rb_funcall (jid, rb_intern ("to_s"), 0);
-		lm_connection_set_jid (conn, StringValuePtr (str_val));
-	}
-
-	return Qnil;
-}
-
-VALUE
-conn_get_port (VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	return UINT2NUM (lm_connection_get_port (conn));
-}
-
-VALUE
-conn_set_port (VALUE self, VALUE port)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	lm_connection_set_port (conn, NUM2UINT (port));
-
-	return Qnil;
-}
-
-VALUE
-conn_get_state (VALUE self)
-{
-	LmConnection *conn = rb_lm_connection_from_ruby_object (self);
-
-	/* TODO: FIXME */
-	return Qnil;
-}
-
-void
-Init_lm_connection (VALUE lm_mLM)
-{
-	lm_cConnection = rb_define_class_under (lm_mLM, "Connection", 
-						rb_cObject);
-
-	rb_define_alloc_func (lm_cConnection, conn_allocate);
-
-	rb_define_method (lm_cConnection, "initialize", conn_initialize, 1);
-	rb_define_method (lm_cConnection, "open", conn_open, -1);
-	rb_define_method (lm_cConnection, "close", conn_close, 0);
-	rb_define_method (lm_cConnection, "authenticate", conn_auth, -1);
-	rb_define_method (lm_cConnection, "keep_alive_rate=", conn_set_keep_alive_rate, 1);
-	/* rb_define_method (lm_cConnection, "keep_alive_rate", conn_get_keep_alive_rate, 0); */
-	rb_define_method (lm_cConnection, "open?", conn_is_open, 0);
-	rb_define_method (lm_cConnection, "authenticated?", conn_is_authenticated, 0);
-	rb_define_method (lm_cConnection, "server", conn_get_server, 0);
-	rb_define_method (lm_cConnection, "server=", conn_set_server, 1);
-	rb_define_method (lm_cConnection, "jid", conn_get_jid, 0);
-	rb_define_method (lm_cConnection, "jid=", conn_set_jid, 1);
-	rb_define_method (lm_cConnection, "port", conn_get_port, 0);
-	rb_define_method (lm_cConnection, "port=", conn_set_port, 1);
-
-	/*
-	rb_define_method (lm_cConnection, "ssl", conn_get_ssl, 0);
-	rb_define_method (lm_cConnection, "ssl=", conn_set_ssl, 1);
-	rb_define_method (lm_cConnection, "proxy", conn_get_proxy, 0);
-	rb_define_method (lm_cConnection, "proxy=", conn_set_proxy, 1);
-	*/
-
-	/* Use one send message and check if there is a block passed? */
-	/*
-	rb_define_method (lm_cConnection, "send", conn_send, 1);
-	rb_define_method (lm_cConnection, "send_with_reply", conn_send_with_reply, -1);
-	rb_define_method (lm_cConnection, "send_raw", conn_send_raw, 1);
-	*/
-
-	rb_define_method (lm_cConnection, "state", conn_get_state, 0);
-}
--- a/bindings/ruby/rlm-message.c	Wed Apr 09 22:06:42 2008 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,102 +0,0 @@
-#include "rloudmouth.h"
-#include "rblm-private.h"
-
-/* How to handle type, sub_type and root node*/
-
-VALUE lm_cMessage;
-
-static LmMessage *
-rb_lm_message_from_ruby_object (VALUE obj)
-{
-	LmMessage *m;
-
-	if (!rb_lm__is_kind_of (obj, lm_cMessage)) {
-		rb_raise (rb_eTypeError, "not a LmMessage");
-	}
-
-	Data_Get_Struct (obj, LmMessage, m);
-
-	return m;
-}
-
-void
-msg_free (LmMessage *m)
-{
-	lm_message_unref (m);
-}
-
-VALUE
-msg_allocate (VALUE klass)
-{
-	return Data_Wrap_Struct (klass, NULL, msg_free, NULL);
-}
-
-VALUE
-msg_initialize (int argc, VALUE *argv, VALUE self)
-{
-	LmMessage  *m;
-	VALUE       to, type, sub_type;
-	char       *to_str = NULL;
-
-	rb_scan_args (argc, argv, "21", &to, &type, &sub_type);
-
-	/* To can be nil */
-	if (!NIL_P (to)) {
-		if (!rb_respond_to (to, rb_intern ("to_s"))) {
-			rb_raise (rb_eArgError, "to should respond to to_s");
-		} else {
-			VALUE str_val = rb_funcall (to, rb_intern ("to_s"), 0);
-			to_str = StringValuePtr (str_val);
-		}
-	} 
-
-	if (NIL_P (sub_type)) {
-		/* Without sub_type */
-		m = lm_message_new (to_str, NUM2INT (type));
-	} else {
-		m = lm_message_new_with_sub_type (to_str,
-						  NUM2INT (type),
-						  NUM2INT (sub_type));
-	}
-
-	DATA_PTR (self) = m;
-
-	return self;
-}
-
-VALUE
-msg_get_type (VALUE self)
-{
-	LmMessage *m = rb_lm_message_from_ruby_object (self);
-
-	return INT2NUM (lm_message_get_type (m));
-}
-
-VALUE
-msg_get_sub_type (VALUE self)
-{
-	LmMessage *m = rb_lm_message_from_ruby_object (self);
-
-	return INT2NUM (lm_message_get_sub_type (m));
-}
-
-VALUE
-msg_get_root_node (VALUE self)
-{
-	/* How to? */
-	return Qnil;
-}
-
-extern void 
-Init_lm_message (VALUE lm_mLM)
-{
-	lm_cMessage = rb_define_class_under (lm_mLM, "Message", rb_cObject);
-
-	rb_define_alloc_func (lm_cMessage, msg_allocate);
-	
-	rb_define_method (lm_cMessage, "initialize", msg_initialize, -1);
-	rb_define_method (lm_cMessage, "type", msg_get_type, 0);
-	rb_define_method (lm_cMessage, "sub_type", msg_get_sub_type, 0);
-	rb_define_method (lm_cMessage, "root_node", msg_get_root_node, 0);
-}
-
--- a/bindings/ruby/rloudmouth.c	Wed Apr 09 22:06:42 2008 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#include "rloudmouth.h"
-
-void
-Init_loudmouth (void)
-{
-	VALUE lm_mLM;
-	
-	lm_mLM = rb_define_module ("LM");
-
-	Init_lm_connection (lm_mLM);
-	Init_lm_message (lm_mLM);
-}
-
--- a/bindings/ruby/rloudmouth.h	Wed Apr 09 22:06:42 2008 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#ifndef __RLM_H__
-#define __RLM_H__
-
-#include <ruby.h>
-#include <loudmouth/loudmouth.h> 
-#include <glib.h>
-
-extern void Init_loudmouth          (void);
-extern void Init_lm_connection      (VALUE lm_mLM);
-extern void Init_lm_message         (VALUE lm_mLM);
-
-#endif /* __RLM_H__ */
-