Sha256: 6c6a0f5ae11f2559e0b18b1b33e3e58acd895c46b650c9133fe1bb79bebc802a

Contents?: true

Size: 1.13 KB

Versions: 84

Compression:

Stored size: 1.13 KB

Contents

/**********************************************************************

  inits.c -

  $Author: yugui $
  created at: Tue Dec 28 16:01:58 JST 1993

  Copyright (C) 1993-2007 Yukihiro Matsumoto

**********************************************************************/

#include "ruby/ruby.h"

#define CALL(n) {void Init_##n(void); Init_##n();}

void
rb_call_inits(void)
{
    CALL(RandomSeed);
    CALL(sym);
    CALL(var_tables);
    CALL(Object);
    CALL(top_self);
    CALL(Encoding);
    CALL(Comparable);
    CALL(Enumerable);
    CALL(String);
    CALL(Exception);
    CALL(eval);
    CALL(safe);
    CALL(jump);
    CALL(Numeric);
    CALL(Bignum);
    CALL(syserr);
    CALL(Array);
    CALL(Hash);
    CALL(Struct);
    CALL(Regexp);
    CALL(pack);
    CALL(transcode);
    CALL(marshal);
    CALL(Range);
    CALL(IO);
    CALL(Dir);
    CALL(Time);
    CALL(Random);
    CALL(signal);
    CALL(process);
    CALL(load);
    CALL(Proc);
    CALL(Binding);
    CALL(Math);
    CALL(GC);
    CALL(Enumerator);
    CALL(VM);
    CALL(ISeq);
    CALL(Thread);
    CALL(Cont);
    CALL(Rational);
    CALL(Complex);
    CALL(version);
}
#undef CALL

Version data entries

84 entries across 84 versions & 1 rubygems

Version Path
rhodes-3.1.1 platform/shared/ruby/inits.c
rhodes-3.1.1.beta platform/shared/ruby/inits.c
rhodes-3.1.0 platform/shared/ruby/inits.c
rhodes-3.1.0.beta.5 platform/shared/ruby/inits.c
rhodes-3.1.0.beta.4 platform/shared/ruby/inits.c
rhodes-3.1.0.beta.3 platform/shared/ruby/inits.c
rhodes-3.1.0.beta.2 platform/shared/ruby/inits.c
rhodes-3.1.0.beta.1 platform/shared/ruby/inits.c
rhodes-3.0.2 platform/shared/ruby/inits.c
rhodes-3.0.2.beta.1 platform/shared/ruby/inits.c
rhodes-3.0.1 platform/shared/ruby/inits.c
rhodes-3.0.1.beta.8 platform/shared/ruby/inits.c
rhodes-3.0.1.beta.7 platform/shared/ruby/inits.c
rhodes-3.0.1.beta.6 platform/shared/ruby/inits.c
rhodes-3.0.1.beta.5 platform/shared/ruby/inits.c
rhodes-3.0.1.beta.4 platform/shared/ruby/inits.c
rhodes-3.0.1.beta.3 platform/shared/ruby/inits.c
rhodes-3.0.1.beta.2 platform/shared/ruby/inits.c
rhodes-3.0.0 platform/shared/ruby/inits.c
rhodes-3.0.0.beta.7 platform/shared/ruby/inits.c