2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
version.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Thu Sep 30 20:08:01 JST 1993
|
|
|
|
|
* encoding.c: provide basic features for M17N.
* parse.y: encoding aware parsing.
* parse.y (pragma_encoding): encoding specification pragma.
* parse.y (rb_intern3): encoding specified symbols.
* string.c (rb_str_length): length based on characters.
for older behavior, bytesize method added.
* string.c (rb_str_index_m): index based on characters. rindex as
well.
* string.c (succ_char): encoding aware succeeding string.
* string.c (rb_str_reverse): reverse based on characters.
* string.c (rb_str_inspect): encoding aware string description.
* string.c (rb_str_upcase_bang): encoding aware case conversion.
downcase, capitalize, swapcase as well.
* string.c (rb_str_tr_bang): tr based on characters. delete,
squeeze, tr_s, count as well.
* string.c (rb_str_split_m): split based on characters.
* string.c (rb_str_each_line): encoding aware each_line.
* string.c (rb_str_each_char): added. iteration based on
characters.
* string.c (rb_str_strip_bang): encoding aware whitespace
stripping. lstrip, rstrip as well.
* string.c (rb_str_justify): encoding aware justifying (ljust,
rjust, center).
* string.c (str_encoding): get encoding attribute from a string.
* re.c (rb_reg_initialize): encoding aware regular expression
* sprintf.c (rb_str_format): formatting (i.e. length count) based
on characters.
* io.c (rb_io_getc): getc to return one-character string.
for older behavior, getbyte method added.
* ext/stringio/stringio.c (strio_getc): ditto.
* io.c (rb_io_ungetc): allow pushing arbitrary string at the
current reading point.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/strscan/strscan.c: encoding support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-25 07:29:39 +04:00
|
|
|
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2012-03-27 17:44:25 +04:00
|
|
|
#include "verconf.h"
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/ruby.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
#include "version.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2007-12-22 09:14:50 +03:00
|
|
|
#define PRINT(type) puts(ruby_##type)
|
2008-03-10 09:53:50 +03:00
|
|
|
#define MKSTR(type) rb_obj_freeze(rb_usascii_str_new(ruby_##type, sizeof(ruby_##type)-1))
|
2007-12-22 09:14:50 +03:00
|
|
|
|
2009-02-05 05:21:37 +03:00
|
|
|
#ifndef RUBY_ARCH
|
|
|
|
#define RUBY_ARCH RUBY_PLATFORM
|
|
|
|
#endif
|
|
|
|
#ifndef RUBY_SITEARCH
|
|
|
|
#define RUBY_SITEARCH RUBY_ARCH
|
|
|
|
#endif
|
2010-01-25 11:36:14 +03:00
|
|
|
#ifdef RUBY_PLATFORM_CPU
|
|
|
|
#define RUBY_THINARCH RUBY_PLATFORM_CPU"-"RUBY_PLATFORM_OS
|
|
|
|
#endif
|
|
|
|
#ifndef RUBY_LIB_PREFIX
|
2010-03-18 00:28:36 +03:00
|
|
|
#ifndef RUBY_EXEC_PREFIX
|
|
|
|
#error RUBY_EXEC_PREFIX must be defined
|
|
|
|
#endif
|
|
|
|
#define RUBY_LIB_PREFIX RUBY_EXEC_PREFIX"/lib/ruby"
|
2010-01-25 11:36:14 +03:00
|
|
|
#endif
|
|
|
|
#ifndef RUBY_SITE_LIB
|
|
|
|
#define RUBY_SITE_LIB RUBY_LIB_PREFIX"/site_ruby"
|
|
|
|
#endif
|
|
|
|
#ifndef RUBY_VENDOR_LIB
|
|
|
|
#define RUBY_VENDOR_LIB RUBY_LIB_PREFIX"/vendor_ruby"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define RUBY_LIB RUBY_LIB_PREFIX "/"RUBY_LIB_VERSION
|
|
|
|
#define RUBY_SITE_LIB2 RUBY_SITE_LIB "/"RUBY_LIB_VERSION
|
|
|
|
#define RUBY_VENDOR_LIB2 RUBY_VENDOR_LIB "/"RUBY_LIB_VERSION
|
|
|
|
#define RUBY_ARCHLIB RUBY_LIB "/"RUBY_ARCH
|
|
|
|
#define RUBY_SITE_ARCHLIB RUBY_SITE_LIB2 "/"RUBY_SITEARCH
|
|
|
|
#define RUBY_VENDOR_ARCHLIB RUBY_VENDOR_LIB2 "/"RUBY_SITEARCH
|
|
|
|
#ifdef RUBY_THINARCH
|
|
|
|
#define RUBY_THIN_ARCHLIB RUBY_LIB "/"RUBY_THINARCH
|
|
|
|
#define RUBY_SITE_THIN_ARCHLIB RUBY_SITE_LIB2 "/"RUBY_THINARCH
|
|
|
|
#define RUBY_VENDOR_THIN_ARCHLIB RUBY_VENDOR_LIB2 "/"RUBY_THINARCH
|
|
|
|
#endif
|
2009-02-05 05:21:37 +03:00
|
|
|
|
2010-08-24 01:08:19 +04:00
|
|
|
const int ruby_api_version[] = {
|
|
|
|
RUBY_API_VERSION_MAJOR,
|
|
|
|
RUBY_API_VERSION_MINOR,
|
|
|
|
RUBY_API_VERSION_TEENY,
|
|
|
|
};
|
2004-03-25 15:01:41 +03:00
|
|
|
const char ruby_version[] = RUBY_VERSION;
|
|
|
|
const char ruby_release_date[] = RUBY_RELEASE_DATE;
|
|
|
|
const char ruby_platform[] = RUBY_PLATFORM;
|
2006-11-26 12:34:32 +03:00
|
|
|
const int ruby_patchlevel = RUBY_PATCHLEVEL;
|
2007-12-22 09:14:50 +03:00
|
|
|
const char ruby_description[] = RUBY_DESCRIPTION;
|
|
|
|
const char ruby_copyright[] = RUBY_COPYRIGHT;
|
2008-08-14 12:28:44 +04:00
|
|
|
const char ruby_engine[] = "ruby";
|
2010-04-15 09:38:07 +04:00
|
|
|
VALUE ruby_engine_name = Qnil;
|
2004-03-25 15:01:41 +03:00
|
|
|
|
2009-02-05 05:21:37 +03:00
|
|
|
const char ruby_initial_load_paths[] =
|
2010-02-08 10:28:00 +03:00
|
|
|
#ifndef NO_INITIAL_LOAD_PATH
|
2009-02-05 05:21:37 +03:00
|
|
|
#ifdef RUBY_SEARCH_PATH
|
|
|
|
RUBY_SEARCH_PATH "\0"
|
|
|
|
#endif
|
2010-11-23 00:30:54 +03:00
|
|
|
#ifndef NO_RUBY_SITE_LIB
|
2009-02-05 05:21:37 +03:00
|
|
|
RUBY_SITE_LIB2 "\0"
|
|
|
|
#ifdef RUBY_SITE_THIN_ARCHLIB
|
|
|
|
RUBY_SITE_THIN_ARCHLIB "\0"
|
|
|
|
#endif
|
|
|
|
RUBY_SITE_ARCHLIB "\0"
|
|
|
|
RUBY_SITE_LIB "\0"
|
2010-11-23 00:30:54 +03:00
|
|
|
#endif
|
2009-02-05 05:21:37 +03:00
|
|
|
|
2010-11-23 00:30:54 +03:00
|
|
|
#ifndef NO_RUBY_VENDOR_LIB
|
2009-02-05 05:21:37 +03:00
|
|
|
RUBY_VENDOR_LIB2 "\0"
|
|
|
|
#ifdef RUBY_VENDOR_THIN_ARCHLIB
|
|
|
|
RUBY_VENDOR_THIN_ARCHLIB "\0"
|
|
|
|
#endif
|
|
|
|
RUBY_VENDOR_ARCHLIB "\0"
|
|
|
|
RUBY_VENDOR_LIB "\0"
|
2010-11-23 00:30:54 +03:00
|
|
|
#endif
|
2009-02-05 05:21:37 +03:00
|
|
|
|
|
|
|
RUBY_LIB "\0"
|
|
|
|
#ifdef RUBY_THIN_ARCHLIB
|
|
|
|
RUBY_THIN_ARCHLIB "\0"
|
|
|
|
#endif
|
2009-10-23 02:35:45 +04:00
|
|
|
RUBY_ARCHLIB "\0"
|
2010-02-08 10:28:00 +03:00
|
|
|
#endif
|
2009-10-23 02:35:45 +04:00
|
|
|
"";
|
2009-02-05 05:21:37 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_version(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The running version of ruby
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_VERSION", MKSTR(version));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The date this ruby was released
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_RELEASE_DATE", MKSTR(release_date));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The platform for this ruby
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_PLATFORM", MKSTR(platform));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The patchlevel for this ruby. If this is a development build of ruby
|
|
|
|
* the patchlevel will be -1
|
|
|
|
*/
|
2006-11-26 12:34:32 +03:00
|
|
|
rb_define_global_const("RUBY_PATCHLEVEL", INT2FIX(RUBY_PATCHLEVEL));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The SVN revision for this ruby.
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_REVISION", INT2FIX(RUBY_REVISION));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The full ruby version string, like <tt>ruby -v</tt> prints'
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_DESCRIPTION", MKSTR(description));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The copyright string for ruby
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_COPYRIGHT", MKSTR(copyright));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The engine or interpreter this ruby uses.
|
|
|
|
*/
|
2010-04-15 09:38:07 +04:00
|
|
|
rb_define_global_const("RUBY_ENGINE", ruby_engine_name = MKSTR(engine));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
ruby_show_version(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-12-22 09:14:50 +03:00
|
|
|
PRINT(description);
|
2005-05-12 04:54:36 +04:00
|
|
|
fflush(stdout);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
ruby_show_copyright(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-12-22 09:14:50 +03:00
|
|
|
PRINT(copyright);
|
1998-01-16 15:13:05 +03:00
|
|
|
exit(0);
|
|
|
|
}
|