RUBY(1) Ruby Programmers Reference Guide RUBY(1)
NAME
ruby − Interpreted object-oriented scripting language |
SYNOPSIS
ruby [−-copyright] [−-version] [−Sacdlnpswvy] [−0[octal]] [−C directory] [−F pattern] [−I directory] [−K c] [−T[level]] [−e command] [−i[extension]] [−r library] [−x[directory]] [−−] [program_file] [argument ...] |
DESCRIPTION |
Ruby is an interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, and extensible. If you want a language for easy object-oriented programming, or you don’t like the Perl ugliness, or you do like the concept of LISP, but don’t like too much parentheses, Ruby may be the language of your choice. |
FEATURES
Ruby’s features are as follows: |
Interpretive
Ruby is an interpreted language, so you don’t have to recompile programs written in Ruby to execute them. Variables have no type (dynamic typing) No declaration needed Simple syntax No user-level memory management Everything is an object Class, inheritance, and methods Singleton methods Mix-in by modules Iterators Closures Text processing and regular expression Bignums Exception handling Direct access to the OS Dynamic loading OPTIONS |
Ruby interpreter accepts following command-line options (switches). They are quite similar to those of perl(1). |
−-copyright’ Prints the copyright notice.
−-version’ Prints the version of Ruby interpreter. −0[octal]’ (The digit ‘‘zero’’.) Specifies the input record separator ($/) as an octal number. If no digit is given, the null character is taken as the separator. Other switches may follow the digits. −00 turns Ruby into paragraph mode. −0777 makes Ruby read whole file at once as a single string since there is no legal character with that value. −C directory −F pattern’ Specifies input field separator ($;). −I directory −K kcode’ Specifies KANJI (Japanese) encoding. −S’ Makes Ruby use the PATH environment variable to search for script, unless if its name begins with a slash. This is used to emulate #! on machines that don’t support it, in the following manner: #! /usr/local/bin/ruby |
−T[level]’ Turns on taint checks at the specified level(default 1).
−a’ Turns on auto-split mode when used with −n or −p. In auto-split mode, Ruby executes $F = $_.split at beginning of each loop. −c’ Causes Ruby to check the syntax of the script and exit without executing. If there are no syntax errors, Ruby will print ‘‘Syntax OK’’ to the standard output. −d’ −e command’ Specifies script from command-line while telling Ruby not to search the rest of arguments for a script file name. −h’ −i extension % echo matz > /tmp/junk |
−l’ (The lowercase letter ‘‘ell’’.) Enables automaticline-ending processing, which means to firstly set $\ tothe value of $/, and secondly chops every line read usingchop!.
−n’ Causes Ruby to assume the following loop around your script, which makes it iterate over file name arguments somewhat like sed −n or awk. while gets |
−p’ Acts mostly same as -n switch, but print the value ofvariable $_ at the each end of the loop. For example:
% echo matz | ruby -p -e ’$_.tr! "a-z",
"A-Z"’ |
−r library’ Causes Ruby to load the library using require.It is useful when using −n or −p.
−s’ Enables some switch parsing for switches after script name but before any file name arguments (or before a −−). Any switches found there are removed from ARGV and set the corresponding variable in the script. For example: #! /usr/local/bin/ruby -s On some systems $0 does not always contain the full pathname, so you need the −S switch to tell Ruby to search for the script if necessary. To handle embedded spaces or such. A better construct than $* would be ${1+"$@"}, but it does not work if the script is being interpreted by csh(1). |
−v’
−-verbose’ Enables verbose mode. Ruby will print its version at the beginning, and set the variable $VERBOSE to true. Some methods print extra messages if this variable is true. If this switch is given, and no other switches are present, Ruby quits after printing its version. −w’ Enables verbose mode without printing version message at the beginning. It sets the $VERBOSE variable to true. −x[directory] −y’ ENVIRONMENT |
RUBYLIB’ A colon-separated list of directories that areadded to Ruby’s library load path ($:). Directories fromthis environment variable are searched before thestandard load path is searched. e.g.: RUBYLIB="$HOME/lib/ruby:$HOME/lib/rubyext"
RUBYOPT’ Additional Ruby options. e.g. RUBYOPT="-w -Ke" RUBYPATH’ A colon-separated list of directories that Ruby searches for Ruby programs when the −S flag is specified. This variable precedes the PATH environment variable. RUBYSHELL’ The path to the system shell command. This environment variable is enabled for only mswin32, mingw32, and OS/2 platforms. If this variable is not defined, Ruby refers to COMSPEC. PATH’ Ruby refers to the PATH environment variable on calling Kernel#system. RUBYLIB_PREFIX AUTHORS |
Ruby is designed and implemented by Yukihiro Matsumoto 〈matz@netlab.jp〉. UNIX December 31, 2002 UNIX |