freebsd-ports/lang/ruby16/pkg-message
Akinori MUSHA b62b9406ab Compress sparse lines.
Correct related ports names.

Note how to build and install ruby-* ports with Ruby 1.4. (lang/ruby14)
2000-09-07 15:00:29 +00:00

25 lines
904 B
Plaintext

====
To use ruby-mode, inf-ruby and rubydb in Emacs/XEmacs, add the
following lines to your ~/.emacs:
;; Taken from the comment section in inf-ruby.el
(setq ruby-program-name "/usr/local/bin/ruby")
(autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files")
(add-to-list 'auto-mode-alist '("\\.rb$" . ruby-mode))
(add-to-list 'interpreter-mode-alist '("ruby" . ruby-mode))
(autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
(autoload 'inf-ruby-keys "inf-ruby" "Set local key defs for inf-ruby in ruby-mode")
(add-hook 'ruby-mode-hook '(lambda () (inf-ruby-keys)))
====
Note that some stuff that comes with the standard Ruby 1.6
distribution is provided as separate ports:
databases/ruby-gdbm: GDBM module
lang/ruby-tcltklib or japanese/ruby-tcltklib:
Tcl/Tk libraries
x11-toolkits/ruby-tk or japanese/ruby-tk:
Tk modules
Please install them as occasion demands.
====