Added comment.
authorDaiki Ueno <ueno@unixuser.org>
Thu, 11 Aug 2005 08:23:30 +0000 (08:23 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Thu, 11 Aug 2005 08:23:30 +0000 (08:23 +0000)
lisp/riece-eval-ruby.el

index 21ff25d..cd7ce66 100644 (file)
@@ -1,3 +1,34 @@
+;;; riece-eval-ruby.el --- evaluate ruby expression
+;; Copyright (C) 1998-2005 Daiki Ueno
+
+;; Author: Daiki Ueno <ueno@unixuser.org>
+;; Created: 1998-09-28
+;; Keywords: IRC, riece, Ruby
+
+;; This file is part of Riece.
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 2, or (at your option)
+;; any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.         See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
+
+;;; Commentary:
+
+;; To use, add the following line to your ~/.riece/init.el:
+;; (add-to-list 'riece-addons 'riece-eval-ruby)
+
+;;; Code:
+
 (require 'riece-ruby)
 (require 'riece-message)
 
@@ -49,4 +80,6 @@
 (defun riece-eval-ruby-disable ()
   (setq riece-eval-ruby-enabled nil))
 
-(provide 'riece-eval-ruby)
\ No newline at end of file
+(provide 'riece-eval-ruby)
+
+;;; riece-eval-ruby.el ends here