1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ruby.c (usage): remove some unimportant lines to fit -h message

in a page.  [ruby-dev:34018]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-03-10 15:47:47 +00:00
parent 2a07423f9c
commit 8149168db6
3 changed files with 8 additions and 6 deletions

View file

@ -1,3 +1,8 @@
Tue Mar 11 00:46:29 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* ruby.c (usage): remove some unimportant lines to fit -h message
in a page. [ruby-dev:34018]
Mon Mar 10 15:53:48 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* version.c (MKSTR): make US-ASCII. [ruby-dev:34010]

3
ruby.c
View file

@ -130,7 +130,6 @@ usage(const char *name)
"-Fpattern split() pattern for autosplit (-a)",
"-i[extension] edit ARGV files in place (make backup if extension supplied)",
"-Idirectory specify $LOAD_PATH directory (may be used more than once)",
"-Kkcode specifies KANJI (Japanese) code-set",
"-l enable line ending processing",
"-n assume 'while gets(); ... end' loop around your script",
"-p assume loop like -n but print line also like sed",
@ -142,8 +141,6 @@ usage(const char *name)
"-w turn warnings on for your script",
"-W[level] set warning level; 0=silence, 1=medium, 2=verbose (default)",
"-x[directory] strip off text before #!ruby line and perhaps cd to directory",
"--enable/--disable-FEATURE --enable/--disable=FEATURE enable/disable FEATUREs",
" gems: gem libraries, rubyopt: RUBYOPT env, or all",
"--copyright print the copyright",
"--version print the version",
NULL

View file

@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0"
#define RUBY_RELEASE_DATE "2008-03-10"
#define RUBY_RELEASE_DATE "2008-03-11"
#define RUBY_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20080310
#define RUBY_RELEASE_CODE 20080311
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 3
#define RUBY_RELEASE_DAY 10
#define RUBY_RELEASE_DAY 11
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];