From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nathan Neff Subject: Cannot open load file: inf-ruby Date: Thu, 2 Sep 2010 07:48:34 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=53709 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Or9DZ-0007Tb-T6 for emacs-orgmode@gnu.org; Thu, 02 Sep 2010 08:48:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Or9DY-0008Ne-Ps for emacs-orgmode@gnu.org; Thu, 02 Sep 2010 08:48:37 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:59172) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Or9DY-0008NW-Hp for emacs-orgmode@gnu.org; Thu, 02 Sep 2010 08:48:36 -0400 Received: by fxm3 with SMTP id 3so189971fxm.0 for ; Thu, 02 Sep 2010 05:48:34 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode I'm having trouble getting ruby scripts to run in org-babel. I'm running Org 7.01 trans. With this example, I get the message "Cannot load file: inf-ruby" after I press C-c C-c with the cursor on the #+begin_src line #+begin_src ruby puts "hello world" return 1 #+end_src I have ruby installed, and can run it from the command line. I can run the following Python snippet just fine: #+begin_src python "boo" return 3 #+end_src python I've tried executing this line in my Scratch buffer and in the same buffer that my ruby-code is in: (org-babel-do-load-languages 'org-babel-load-languages '((R . t) (ditaa . t) (dot . t) (emacs-lisp . t) (gnuplot . t) (haskell . nil) (ocaml . nil) (python . t) (ruby . t) (screen . nil) (sh . t) (sql . nil) (sqlite . t))) Can someone post a bare-bones setup that can run ruby scripts from org-babel?