mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8e5c3b23f2
and delimiters. * dir.c (remove_backslases): remove backslashes from path before calling stat(2). * dir.c (dir_s_glob): call rb_yield directly (via push_pattern) if block is given to the method. * dir.c (push_pattern): do not call rb_ary_push; yield directly. * eval.c (blk_copy_prev): reduced ALLOC_N too much. * eval.c (frame_dup): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
45 lines
1,018 B
C
45 lines
1,018 B
C
/**********************************************************************
|
|
|
|
version.c -
|
|
|
|
$Author$
|
|
$Date$
|
|
created at: Thu Sep 30 20:08:01 JST 1993
|
|
|
|
Copyright (C) 1993-2001 Yukihiro Matsumoto
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ruby.h"
|
|
#include "version.h"
|
|
#include <stdio.h>
|
|
|
|
void
|
|
Init_version()
|
|
{
|
|
VALUE v = rb_str_new2(RUBY_VERSION);
|
|
VALUE d = rb_str_new2(RUBY_RELEASE_DATE);
|
|
VALUE p = rb_str_new2(RUBY_PLATFORM);
|
|
|
|
rb_define_global_const("RUBY_VERSION", v);
|
|
rb_define_global_const("RUBY_RELEASE_DATE", d);
|
|
rb_define_global_const("RUBY_PLATFORM", p);
|
|
|
|
/* obsolete constants */
|
|
rb_define_global_const("VERSION", v);
|
|
rb_define_global_const("RELEASE_DATE", d);
|
|
rb_define_global_const("PLATFORM", p);
|
|
}
|
|
|
|
void
|
|
ruby_show_version()
|
|
{
|
|
printf("ruby %s (%s) [%s]\n", RUBY_VERSION, RUBY_RELEASE_DATE, RUBY_PLATFORM);
|
|
}
|
|
|
|
void
|
|
ruby_show_copyright()
|
|
{
|
|
printf("ruby - Copyright (C) 1993-2001 Yukihiro Matsumoto\n");
|
|
exit(0);
|
|
}
|