#include "../fbuffer/fbuffer.h"
#include "parser.h"
#if defined HAVE_RUBY_ENCODING_H
# define EXC_ENCODING rb_utf8_encoding(),
# ifndef HAVE_RB_ENC_RAISE
static void
enc_raise(rb_encoding *enc, VALUE exc, const char *fmt, ...)
{
va_list args;
VALUE mesg;
va_start(args, fmt);
mesg = rb_enc_vsprintf(enc, fmt, args);
va_end(args);
rb_exc_raise(rb_exc_new3(exc, mesg));
}
# define rb_enc_raise enc_raise
# endif
#else
# define EXC_ENCODING /* nothing */
# define rb_enc_raise rb_raise
#endif
/* unicode */
static const signed char digit_values[256] = {
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1,
-1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1
};
static UTF32 unescape_unicode(const unsigned char *p)
{
signed char b;
UTF32 result = 0;
b = digit_values[p[0]];
if (b < 0) return UNI_REPLACEMENT_CHAR;
result = (result << 4) | (unsigned char)b;
b = digit_values[p[1]];
if (b < 0) return UNI_REPLACEMENT_CHAR;
result = (result << 4) | (unsigned char)b;
b = digit_values[p[2]];
if (b < 0) return UNI_REPLACEMENT_CHAR;
result = (result << 4) | (unsigned char)b;
b = digit_values[p[3]];
if (b < 0) return UNI_REPLACEMENT_CHAR;
result = (result << 4) | (unsigned char)b;
return result;
}
static int convert_UTF32_to_UTF8(char *buf, UTF32 ch)
{
int len = 1;
if (ch <= 0x7F) {
buf[0] = (char) ch;
} else if (ch <= 0x07FF) {
buf[0] = (char) ((ch >> 6) | 0xC0);
buf[1] = (char) ((ch & 0x3F) | 0x80);
len++;
} else if (ch <= 0xFFFF) {
buf[0] = (char) ((ch >> 12) | 0xE0);
buf[1] = (char) (((ch >> 6) & 0x3F) | 0x80);
buf[2] = (char) ((ch & 0x3F) | 0x80);
len += 2;
} else if (ch <= 0x1fffff) {
buf[0] =(char) ((ch >> 18) | 0xF0);
buf[1] =(char) (((ch >> 12) & 0x3F) | 0x80);
buf[2] =(char) (((ch >> 6) & 0x3F) | 0x80);
buf[3] =(char) ((ch & 0x3F) | 0x80);
len += 3;
} else {
buf[0] = '?';
}
return len;
}
static VALUE mJSON, mExt, cParser, eParserError, eNestingError;
static VALUE CNaN, CInfinity, CMinusInfinity;
static VALUE cBigDecimal = Qundef;
static ID i_json_creatable_p, i_json_create, i_create_id, i_create_additions,
i_chr, i_max_nesting, i_allow_nan, i_symbolize_names,
i_object_class, i_array_class, i_decimal_class, i_key_p,
i_deep_const_get, i_match, i_match_string, i_aset, i_aref,
i_leftshift, i_new, i_BigDecimal;
%%{
machine JSON_common;
cr = '\n';
cr_neg = [^\n];
ws = [ \t\r\n];
c_comment = '/*' ( any* - (any* '*/' any* ) ) '*/';
cpp_comment = '//' cr_neg* cr;
comment = c_comment | cpp_comment;
ignore = ws | comment;
name_separator = ':';
value_separator = ',';
Vnull = 'null';
Vfalse = 'false';
Vtrue = 'true';
VNaN = 'NaN';
VInfinity = 'Infinity';
VMinusInfinity = '-Infinity';
begin_value = [nft\"\-\[\{NI] | digit;
begin_object = '{';
end_object = '}';
begin_array = '[';
end_array = ']';
begin_string = '"';
begin_name = begin_string;
begin_number = digit | '-';
}%%
%%{
machine JSON_object;
include JSON_common;
write data;
action parse_value {
VALUE v = Qnil;
char *np = JSON_parse_value(json, fpc, pe, &v, current_nesting);
if (np == NULL) {
fhold; fbreak;
} else {
if (NIL_P(json->object_class)) {
rb_hash_aset(*result, last_name, v);
} else {
rb_funcall(*result, i_aset, 2, last_name, v);
}
fexec np;
}
}
action parse_name {
char *np;
json->parsing_name = 1;
np = JSON_parse_string(json, fpc, pe, &last_name);
json->parsing_name = 0;
if (np == NULL) { fhold; fbreak; } else fexec np;
}
action exit { fhold; fbreak; }
pair = ignore* begin_name >parse_name ignore* name_separator ignore* begin_value >parse_value;
next_pair = ignore* value_separator pair;
main := (
begin_object
(pair (next_pair)*)? ignore*
end_object
) @exit;
}%%
static char *JSON_parse_object(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
{
int cs = EVIL;
VALUE last_name = Qnil;
VALUE object_class = json->object_class;
if (json->max_nesting && current_nesting > json->max_nesting) {
rb_raise(eNestingError, "nesting of %d is too deep", current_nesting);
}
*result = NIL_P(object_class) ? rb_hash_new() : rb_class_new_instance(0, 0, object_class);
%% write init;
%% write exec;
if (cs >= JSON_object_first_final) {
if (json->create_additions) {
VALUE klassname;
if (NIL_P(json->object_class)) {
klassname = rb_hash_aref(*result, json->create_id);
} else {
klassname = rb_funcall(*result, i_aref, 1, json->create_id);
}
if (!NIL_P(klassname)) {
VALUE klass = rb_funcall(mJSON, i_deep_const_get, 1, klassname);
if (RTEST(rb_funcall(klass, i_json_creatable_p, 0))) {
*result = rb_funcall(klass, i_json_create, 1, *result);
}
}
}
return p + 1;
} else {
return NULL;
}
}
%%{
machine JSON_value;
include JSON_common;
write data;
action parse_null {
*result = Qnil;
}
action parse_false {
*result = Qfalse;
}
action parse_true {
*result = Qtrue;
}
action parse_nan {
if (json->allow_nan) {
*result = CNaN;
} else {
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p - 2);
}
}
action parse_infinity {
if (json->allow_nan) {
*result = CInfinity;
} else {
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p - 8);
}
}
action parse_string {
char *np = JSON_parse_string(json, fpc, pe, result);
if (np == NULL) { fhold; fbreak; } else fexec np;
}
action parse_number {
char *np;
if(pe > fpc + 8 && !strncmp(MinusInfinity, fpc, 9)) {
if (json->allow_nan) {
*result = CMinusInfinity;
fexec p + 10;
fhold; fbreak;
} else {
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
}
}
np = JSON_parse_float(json, fpc, pe, result);
if (np != NULL) fexec np;
np = JSON_parse_integer(json, fpc, pe, result);
if (np != NULL) fexec np;
fhold; fbreak;
}
action parse_array {
char *np;
np = JSON_parse_array(json, fpc, pe, result, current_nesting + 1);
if (np == NULL) { fhold; fbreak; } else fexec np;
}
action parse_object {
char *np;
np = JSON_parse_object(json, fpc, pe, result, current_nesting + 1);
if (np == NULL) { fhold; fbreak; } else fexec np;
}
action exit { fhold; fbreak; }
main := ignore* (
Vnull @parse_null |
Vfalse @parse_false |
Vtrue @parse_true |
VNaN @parse_nan |
VInfinity @parse_infinity |
begin_number >parse_number |
begin_string >parse_string |
begin_array >parse_array |
begin_object >parse_object
) ignore* %*exit;
}%%
static char *JSON_parse_value(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
{
int cs = EVIL;
%% write init;
%% write exec;
if (cs >= JSON_value_first_final) {
return p;
} else {
return NULL;
}
}
%%{
machine JSON_integer;
write data;
action exit { fhold; fbreak; }
main := '-'? ('0' | [1-9][0-9]*) (^[0-9]? @exit);
}%%
static char *JSON_parse_integer(JSON_Parser *json, char *p, char *pe, VALUE *result)
{
int cs = EVIL;
%% write init;
json->memo = p;
%% write exec;
if (cs >= JSON_integer_first_final) {
long len = p - json->memo;
fbuffer_clear(json->fbuffer);
fbuffer_append(json->fbuffer, json->memo, len);
fbuffer_append_char(json->fbuffer, '\0');
*result = rb_cstr2inum(FBUFFER_PTR(json->fbuffer), 10);
return p + 1;
} else {
return NULL;
}
}
%%{
machine JSON_float;
include JSON_common;
write data;
action exit { fhold; fbreak; }
main := '-'? (
(('0' | [1-9][0-9]*) '.' [0-9]+ ([Ee] [+\-]?[0-9]+)?)
| (('0' | [1-9][0-9]*) ([Ee] [+\-]?[0-9]+))
) (^[0-9Ee.\-]? @exit );
}%%
static int is_bigdecimal_class(VALUE obj)
{
if (cBigDecimal == Qundef) {
if (rb_const_defined(rb_cObject, i_BigDecimal)) {
cBigDecimal = rb_const_get_at(rb_cObject, i_BigDecimal);
}
else {
return 0;
}
}
return obj == cBigDecimal;
}
static char *JSON_parse_float(JSON_Parser *json, char *p, char *pe, VALUE *result)
{
int cs = EVIL;
%% write init;
json->memo = p;
%% write exec;
if (cs >= JSON_float_first_final) {
long len = p - json->memo;
fbuffer_clear(json->fbuffer);
fbuffer_append(json->fbuffer, json->memo, len);
fbuffer_append_char(json->fbuffer, '\0');
if (NIL_P(json->decimal_class)) {
*result = rb_float_new(rb_cstr_to_dbl(FBUFFER_PTR(json->fbuffer), 1));
} else {
VALUE text;
text = rb_str_new2(FBUFFER_PTR(json->fbuffer));
if (is_bigdecimal_class(json->decimal_class)) {
*result = rb_funcall(Qnil, i_BigDecimal, 1, text);
} else {
*result = rb_funcall(json->decimal_class, i_new, 1, text);
}
}
return p + 1;
} else {
return NULL;
}
}
%%{
machine JSON_array;
include JSON_common;
write data;
action parse_value {
VALUE v = Qnil;
char *np = JSON_parse_value(json, fpc, pe, &v, current_nesting);
if (np == NULL) {
fhold; fbreak;
} else {
if (NIL_P(json->array_class)) {
rb_ary_push(*result, v);
} else {
rb_funcall(*result, i_leftshift, 1, v);
}
fexec np;
}
}
action exit { fhold; fbreak; }
next_element = value_separator ignore* begin_value >parse_value;
main := begin_array ignore*
((begin_value >parse_value ignore*)
(ignore* next_element ignore*)*)?
end_array @exit;
}%%
static char *JSON_parse_array(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
{
int cs = EVIL;
VALUE array_class = json->array_class;
if (json->max_nesting && current_nesting > json->max_nesting) {
rb_raise(eNestingError, "nesting of %d is too deep", current_nesting);
}
*result = NIL_P(array_class) ? rb_ary_new() : rb_class_new_instance(0, 0, array_class);
%% write init;
%% write exec;
if(cs >= JSON_array_first_final) {
return p + 1;
} else {
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
return NULL;
}
}
static VALUE json_string_unescape(VALUE result, char *string, char *stringEnd)
{
char *p = string, *pe = string, *unescape;
int unescape_len;
char buf[4];
while (pe < stringEnd) {
if (*pe == '\\') {
unescape = (char *) "?";
unescape_len = 1;
if (pe > p) rb_str_buf_cat(result, p, pe - p);
switch (*++pe) {
case 'n':
unescape = (char *) "\n";
break;
case 'r':
unescape = (char *) "\r";
break;
case 't':
unescape = (char *) "\t";
break;
case '"':
unescape = (char *) "\"";
break;
case '\\':
unescape = (char *) "\\";
break;
case 'b':
unescape = (char *) "\b";
break;
case 'f':
unescape = (char *) "\f";
break;
case 'u':
if (pe > stringEnd - 4) {
rb_enc_raise(
EXC_ENCODING eParserError,
"%u: incomplete unicode character escape sequence at '%s'", __LINE__, p
);
} else {
UTF32 ch = unescape_unicode((unsigned char *) ++pe);
pe += 3;
if (UNI_SUR_HIGH_START == (ch & 0xFC00)) {
pe++;
if (pe > stringEnd - 6) {
rb_enc_raise(
EXC_ENCODING eParserError,
"%u: incomplete surrogate pair at '%s'", __LINE__, p
);
}
if (pe[0] == '\\' && pe[1] == 'u') {
UTF32 sur = unescape_unicode((unsigned char *) pe + 2);
ch = (((ch & 0x3F) << 10) | ((((ch >> 6) & 0xF) + 1) << 16)
| (sur & 0x3FF));
pe += 5;
} else {
unescape = (char *) "?";
break;
}
}
unescape_len = convert_UTF32_to_UTF8(buf, ch);
unescape = buf;
}
break;
default:
p = pe;
continue;
}
rb_str_buf_cat(result, unescape, unescape_len);
p = ++pe;
} else {
pe++;
}
}
rb_str_buf_cat(result, p, pe - p);
return result;
}
%%{
machine JSON_string;
include JSON_common;
write data;
action parse_string {
*result = json_string_unescape(*result, json->memo + 1, p);
if (NIL_P(*result)) {
fhold;
fbreak;
} else {
FORCE_UTF8(*result);
fexec p + 1;
}
}
action exit { fhold; fbreak; }
main := '"' ((^([\"\\] | 0..0x1f) | '\\'[\"\\/bfnrt] | '\\u'[0-9a-fA-F]{4} | '\\'^([\"\\/bfnrtu]|0..0x1f))* %parse_string) '"' @exit;
}%%
static int
match_i(VALUE regexp, VALUE klass, VALUE memo)
{
if (regexp == Qundef) return ST_STOP;
if (RTEST(rb_funcall(klass, i_json_creatable_p, 0)) &&
RTEST(rb_funcall(regexp, i_match, 1, rb_ary_entry(memo, 0)))) {
rb_ary_push(memo, klass);
return ST_STOP;
}
return ST_CONTINUE;
}
static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *result)
{
int cs = EVIL;
VALUE match_string;
*result = rb_str_buf_new(0);
%% write init;
json->memo = p;
%% write exec;
if (json->create_additions && RTEST(match_string = json->match_string)) {
VALUE klass;
VALUE memo = rb_ary_new2(2);
rb_ary_push(memo, *result);
rb_hash_foreach(match_string, match_i, memo);
klass = rb_ary_entry(memo, 1);
if (RTEST(klass)) {
*result = rb_funcall(klass, i_json_create, 1, *result);
}
}
if (json->symbolize_names && json->parsing_name) {
*result = rb_str_intern(*result);
} else if (RB_TYPE_P(*result, T_STRING)) {
rb_str_resize(*result, RSTRING_LEN(*result));
}
if (cs >= JSON_string_first_final) {
return p + 1;
} else {
return NULL;
}
}
/*
* Document-class: JSON::Ext::Parser
*
* This is the JSON parser implemented as a C extension. It can be configured
* to be used by setting
*
* JSON.parser = JSON::Ext::Parser
*
* with the method parser= in JSON.
*
*/
static VALUE convert_encoding(VALUE source)
{
#ifdef HAVE_RUBY_ENCODING_H
rb_encoding *enc = rb_enc_get(source);
if (enc == rb_ascii8bit_encoding()) {
if (OBJ_FROZEN(source)) {
source = rb_str_dup(source);
}
FORCE_UTF8(source);
} else {
source = rb_str_conv_enc(source, rb_enc_get(source), rb_utf8_encoding());
}
#endif
return source;
}
/*
* call-seq: new(source, opts => {})
*
* Creates a new JSON::Ext::Parser instance for the string _source_.
*
* Creates a new JSON::Ext::Parser instance for the string _source_.
*
* It will be configured by the _opts_ hash. _opts_ can have the following
* keys:
*
* _opts_ can have the following keys:
* * *max_nesting*: The maximum depth of nesting allowed in the parsed data
* structures. Disable depth checking with :max_nesting => false|nil|0, it
* defaults to 100.
* * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in
* defiance of RFC 4627 to be parsed by the Parser. This option defaults to
* false.
* * *symbolize_names*: If set to true, returns symbols for the names
* (keys) in a JSON object. Otherwise strings are returned, which is
* also the default. It's not possible to use this option in
* conjunction with the *create_additions* option.
* * *create_additions*: If set to false, the Parser doesn't create
* additions even if a matching class and create_id was found. This option
* defaults to false.
* * *object_class*: Defaults to Hash
* * *array_class*: Defaults to Array
*/
static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
{
VALUE source, opts;
GET_PARSER_INIT;
if (json->Vsource) {
rb_raise(rb_eTypeError, "already initialized instance");
}
#ifdef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
rb_scan_args(argc, argv, "1:", &source, &opts);
#else
rb_scan_args(argc, argv, "11", &source, &opts);
#endif
if (!NIL_P(opts)) {
#ifndef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
opts = rb_convert_type(opts, T_HASH, "Hash", "to_hash");
if (NIL_P(opts)) {
rb_raise(rb_eArgError, "opts needs to be like a hash");
} else {
#endif
VALUE tmp = ID2SYM(i_max_nesting);
if (option_given_p(opts, tmp)) {
VALUE max_nesting = rb_hash_aref(opts, tmp);
if (RTEST(max_nesting)) {
Check_Type(max_nesting, T_FIXNUM);
json->max_nesting = FIX2INT(max_nesting);
} else {
json->max_nesting = 0;
}
} else {
json->max_nesting = 100;
}
tmp = ID2SYM(i_allow_nan);
if (option_given_p(opts, tmp)) {
json->allow_nan = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
} else {
json->allow_nan = 0;
}
tmp = ID2SYM(i_symbolize_names);
if (option_given_p(opts, tmp)) {
json->symbolize_names = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
} else {
json->symbolize_names = 0;
}
tmp = ID2SYM(i_create_additions);
if (option_given_p(opts, tmp)) {
json->create_additions = RTEST(rb_hash_aref(opts, tmp));
} else {
json->create_additions = 0;
}
if (json->symbolize_names && json->create_additions) {
rb_raise(rb_eArgError,
"options :symbolize_names and :create_additions cannot be "
" used in conjunction");
}
tmp = ID2SYM(i_create_id);
if (option_given_p(opts, tmp)) {
json->create_id = rb_hash_aref(opts, tmp);
} else {
json->create_id = rb_funcall(mJSON, i_create_id, 0);
}
tmp = ID2SYM(i_object_class);
if (option_given_p(opts, tmp)) {
json->object_class = rb_hash_aref(opts, tmp);
} else {
json->object_class = Qnil;
}
tmp = ID2SYM(i_array_class);
if (option_given_p(opts, tmp)) {
json->array_class = rb_hash_aref(opts, tmp);
} else {
json->array_class = Qnil;
}
tmp = ID2SYM(i_decimal_class);
if (option_given_p(opts, tmp)) {
json->decimal_class = rb_hash_aref(opts, tmp);
} else {
json->decimal_class = Qnil;
}
tmp = ID2SYM(i_match_string);
if (option_given_p(opts, tmp)) {
VALUE match_string = rb_hash_aref(opts, tmp);
json->match_string = RTEST(match_string) ? match_string : Qnil;
} else {
json->match_string = Qnil;
}
#ifndef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
}
#endif
} else {
json->max_nesting = 100;
json->allow_nan = 0;
json->create_additions = 0;
json->create_id = rb_funcall(mJSON, i_create_id, 0);
json->object_class = Qnil;
json->array_class = Qnil;
json->decimal_class = Qnil;
}
source = convert_encoding(StringValue(source));
StringValue(source);
json->len = RSTRING_LEN(source);
json->source = RSTRING_PTR(source);;
json->Vsource = source;
return self;
}
%%{
machine JSON;
write data;
include JSON_common;
action parse_value {
char *np = JSON_parse_value(json, fpc, pe, &result, 0);
if (np == NULL) { fhold; fbreak; } else fexec np;
}
main := ignore* (
begin_value >parse_value
) ignore*;
}%%
/*
* call-seq: parse()
*
* Parses the current JSON text _source_ and returns the complete data
* structure as a result.
*/
static VALUE cParser_parse(VALUE self)
{
char *p, *pe;
int cs = EVIL;
VALUE result = Qnil;
GET_PARSER;
%% write init;
p = json->source;
pe = p + json->len;
%% write exec;
if (cs >= JSON_first_final && p == pe) {
return result;
} else {
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
return Qnil;
}
}
static void JSON_mark(void *ptr)
{
JSON_Parser *json = ptr;
rb_gc_mark_maybe(json->Vsource);
rb_gc_mark_maybe(json->create_id);
rb_gc_mark_maybe(json->object_class);
rb_gc_mark_maybe(json->array_class);
rb_gc_mark_maybe(json->decimal_class);
rb_gc_mark_maybe(json->match_string);
}
static void JSON_free(void *ptr)
{
JSON_Parser *json = ptr;
fbuffer_free(json->fbuffer);
ruby_xfree(json);
}
static size_t JSON_memsize(const void *ptr)
{
const JSON_Parser *json = ptr;
return sizeof(*json) + FBUFFER_CAPA(json->fbuffer);
}
#ifdef NEW_TYPEDDATA_WRAPPER
static const rb_data_type_t JSON_Parser_type = {
"JSON/Parser",
{JSON_mark, JSON_free, JSON_memsize,},
#ifdef RUBY_TYPED_FREE_IMMEDIATELY
0, 0,
RUBY_TYPED_FREE_IMMEDIATELY,
#endif
};
#endif
static VALUE cJSON_parser_s_allocate(VALUE klass)
{
JSON_Parser *json;
VALUE obj = TypedData_Make_Struct(klass, JSON_Parser, &JSON_Parser_type, json);
json->fbuffer = fbuffer_alloc(0);
return obj;
}
/*
* call-seq: source()
*
* Returns a copy of the current _source_ string, that was used to construct
* this Parser.
*/
static VALUE cParser_source(VALUE self)
{
GET_PARSER;
return rb_str_dup(json->Vsource);
}
void Init_parser(void)
{
#undef rb_intern
rb_require("json/common");
mJSON = rb_define_module("JSON");
mExt = rb_define_module_under(mJSON, "Ext");
cParser = rb_define_class_under(mExt, "Parser", rb_cObject);
eParserError = rb_path2class("JSON::ParserError");
eNestingError = rb_path2class("JSON::NestingError");
rb_gc_register_mark_object(eParserError);
rb_gc_register_mark_object(eNestingError);
rb_define_alloc_func(cParser, cJSON_parser_s_allocate);
rb_define_method(cParser, "initialize", cParser_initialize, -1);
rb_define_method(cParser, "parse", cParser_parse, 0);
rb_define_method(cParser, "source", cParser_source, 0);
CNaN = rb_const_get(mJSON, rb_intern("NaN"));
rb_gc_register_mark_object(CNaN);
CInfinity = rb_const_get(mJSON, rb_intern("Infinity"));
rb_gc_register_mark_object(CInfinity);
CMinusInfinity = rb_const_get(mJSON, rb_intern("MinusInfinity"));
rb_gc_register_mark_object(CMinusInfinity);
i_json_creatable_p = rb_intern("json_creatable?");
i_json_create = rb_intern("json_create");
i_create_id = rb_intern("create_id");
i_create_additions = rb_intern("create_additions");
i_chr = rb_intern("chr");
i_max_nesting = rb_intern("max_nesting");
i_allow_nan = rb_intern("allow_nan");
i_symbolize_names = rb_intern("symbolize_names");
i_object_class = rb_intern("object_class");
i_array_class = rb_intern("array_class");
i_decimal_class = rb_intern("decimal_class");
i_match = rb_intern("match");
i_match_string = rb_intern("match_string");
i_key_p = rb_intern("key?");
i_deep_const_get = rb_intern("deep_const_get");
i_aset = rb_intern("[]=");
i_aref = rb_intern("[]");
i_leftshift = rb_intern("<<");
i_new = rb_intern("new");
i_BigDecimal = rb_intern("BigDecimal");
}
/*
* Local variables:
* mode: c
* c-file-style: ruby
* indent-tabs-mode: nil
* End:
*/
31d1a9ee60b14c3bef92a'>ast.rb
276 | |
| -rwxr-xr-x | autogen.sh | 17 | |
| -rwxr-xr-x | basictest/runner.rb | 33 | |
| -rwxr-xr-x | basictest/test.rb | 2367 | |
| -rw-r--r-- | bcc32/Makefile.sub | 617 | |
| -rw-r--r-- | bcc32/README.bcc32 | 130 | |
| -rwxr-xr-x | bcc32/configure.bat | 163 | |
| -rwxr-xr-x | bcc32/mkexports.rb | 26 | |
| -rw-r--r-- | bcc32/setup.mak | 179 | |
| -rw-r--r-- | benchmark/README.md | 74 | |
| -rw-r--r-- | benchmark/app_answer.rb (renamed from benchmark/bm_app_answer.rb) | 0 | |
| -rw-r--r-- | benchmark/app_aobench.rb | 297 | |
| -rw-r--r-- | benchmark/app_erb.yml | 23 | |
| -rw-r--r-- | benchmark/app_factorial.rb | 11 | |
| -rw-r--r-- | benchmark/app_fib.rb (renamed from benchmark/bm_app_fib.rb) | 0 | |
| -rw-r--r-- | benchmark/app_lc_fizzbuzz.rb | 52 | |
| -rw-r--r-- | benchmark/app_mandelbrot.rb | 23 | |
| -rw-r--r-- | benchmark/app_pentomino.rb | 130 | |
| -rw-r--r-- | benchmark/app_raise.rb | 8 | |
| -rw-r--r-- | benchmark/app_strconcat.rb | 5 | |
| -rw-r--r-- | benchmark/app_tak.rb (renamed from benchmark/bm_app_tak.rb) | 0 | |
| -rw-r--r-- | benchmark/app_tarai.rb (renamed from benchmark/bm_app_tarai.rb) | 0 | |
| -rw-r--r-- | benchmark/app_uri.rb (renamed from benchmark/bm_app_uri.rb) | 0 | |
| -rw-r--r-- | benchmark/array_flatten.yml | 19 | |
| -rw-r--r-- | benchmark/array_intersection.yml | 14 | |
| -rw-r--r-- | benchmark/array_max_float.yml | 30 | |
| -rw-r--r-- | benchmark/array_max_int.yml | 31 | |
| -rw-r--r-- | benchmark/array_max_str.yml | 30 | |
| -rw-r--r-- | benchmark/array_min.yml | 31 | |
| -rw-r--r-- | benchmark/array_sample.yml | 4 | |
| -rw-r--r-- | benchmark/array_sample_100k_10.rb | 2 | |
| -rw-r--r-- | benchmark/array_sample_100k_11.rb | 2 | |
| -rw-r--r-- | benchmark/array_sample_100k__100.rb | 2 | |
| -rw-r--r-- | benchmark/array_sample_100k__1k.rb | 2 | |
| -rw-r--r-- | benchmark/array_sample_100k__6k.rb | 2 | |
| -rw-r--r-- | benchmark/array_sample_100k___10k.rb | 2 | |
| -rw-r--r-- | benchmark/array_sample_100k___50k.rb | 2 | |
| -rw-r--r-- | benchmark/array_shift.rb | 14 | |
| -rw-r--r-- | benchmark/array_small_and.rb | 17 | |
| -rw-r--r-- | benchmark/array_small_diff.rb | 17 | |
| -rw-r--r-- | benchmark/array_small_or.rb | 17 | |
| -rw-r--r-- | benchmark/array_sort_block.rb | 2 | |
| -rw-r--r-- | benchmark/array_sort_float.rb | 2 | |
| -rw-r--r-- | benchmark/array_sort_int.yml | 15 | |
| -rw-r--r-- | benchmark/array_values_at_int.rb | 2 | |
| -rw-r--r-- | benchmark/array_values_at_range.rb | 2 | |
| -rw-r--r-- | benchmark/attr_accessor.yml | 29 | |
| -rw-r--r-- | benchmark/bighash.rb | 1 | |
| -rw-r--r-- | benchmark/bm_app_erb.rb | 26 | |
| -rw-r--r-- | benchmark/bm_app_factorial.rb | 11 | |
| -rw-r--r-- | benchmark/bm_app_mandelbrot.rb | 23 | |
| -rw-r--r-- | benchmark/bm_app_pentomino.rb | 259 | |
| -rw-r--r-- | benchmark/bm_app_raise.rb | 8 | |
| -rw-r--r-- | benchmark/bm_app_strconcat.rb | 5 | |
| -rw-r--r-- | benchmark/bm_io_file_create.rb | 13 | |
| -rw-r--r-- | benchmark/bm_io_file_read.rb | 15 | |
| -rw-r--r-- | benchmark/bm_io_file_write.rb | 14 | |
| -rw-r--r-- | benchmark/bm_loop_whileloop.rb | 4 | |
| -rw-r--r-- | benchmark/bm_loop_whileloop2.rb | 4 | |
| -rw-r--r-- | benchmark/bm_so_ackermann.rb | 19 | |
| -rw-r--r-- | benchmark/bm_so_array.rb | 23 | |
| -rw-r--r-- | benchmark/bm_so_binary_trees.rb | 57 | |
| -rw-r--r-- | benchmark/bm_so_concatenate.rb | 18 | |
| -rw-r--r-- | benchmark/bm_so_count_words.rb | 19 | |
| -rw-r--r-- | benchmark/bm_so_exception.rb | 61 | |
| -rw-r--r-- | benchmark/bm_so_fannkuch.rb | 45 | |
| -rw-r--r-- | benchmark/bm_so_fasta.rb | 81 | |
| -rw-r--r-- | benchmark/bm_so_k_nucleotide.rb | 48 | |
| -rw-r--r-- | benchmark/bm_so_lists.rb | 47 | |
| -rw-r--r-- | benchmark/bm_so_matrix.rb | 48 | |
| -rw-r--r-- | benchmark/bm_so_meteor_contest.rb | 564 | |
| -rw-r--r-- | benchmark/bm_so_nbody.rb | 148 | |
| -rw-r--r-- | benchmark/bm_so_nested_loop.rb | 24 | |
| -rw-r--r-- | benchmark/bm_so_nsieve_bits.rb | 42 | |
| -rw-r--r-- | benchmark/bm_so_object.rb | 56 | |
| -rw-r--r-- | benchmark/bm_so_pidigits.rb | 92 | |
| -rw-r--r-- | benchmark/bm_so_random.rb | 20 | |
| -rw-r--r-- | benchmark/bm_so_reverse_complement.rb | 30 | |
| -rw-r--r-- | benchmark/bm_so_sieve.rb | 24 | |
| -rw-r--r-- | benchmark/bm_vm1_block.rb | 10 | |
| -rw-r--r-- | benchmark/bm_vm1_const.rb | 8 | |
| -rw-r--r-- | benchmark/bm_vm1_ensure.rb | 11 | |
| -rw-r--r-- | benchmark/bm_vm1_ivar.rb | 8 | |
| -rw-r--r-- | benchmark/bm_vm1_ivar_set.rb | 6 | |
| -rw-r--r-- | benchmark/bm_vm1_length.rb | 9 | |
| -rw-r--r-- | benchmark/bm_vm1_neq.rb | 8 | |
| -rw-r--r-- | benchmark/bm_vm1_not.rb | 7 | |
| -rw-r--r-- | benchmark/bm_vm1_rescue.rb | 7 | |
| -rw-r--r-- | benchmark/bm_vm1_simplereturn.rb | 9 | |
| -rw-r--r-- | benchmark/bm_vm1_swap.rb | 8 | |
| -rw-r--r-- | benchmark/bm_vm2_array.rb | 5 | |
| -rw-r--r-- | benchmark/bm_vm2_case.rb | 14 | |
| -rw-r--r-- | benchmark/bm_vm2_eval.rb | 6 | |
| -rw-r--r-- | benchmark/bm_vm2_method.rb | 9 | |
| -rw-r--r-- | benchmark/bm_vm2_mutex.rb | 9 | |
| -rw-r--r-- | benchmark/bm_vm2_poly_method.rb | 20 | |
| -rw-r--r-- | benchmark/bm_vm2_poly_method_ov.rb | 20 | |
| -rw-r--r-- | benchmark/bm_vm2_proc.rb | 14 | |
| -rw-r--r-- | benchmark/bm_vm2_regexp.rb | 6 | |
| -rw-r--r-- | benchmark/bm_vm2_send.rb | 12 | |
| -rw-r--r-- | benchmark/bm_vm2_super.rb | 20 | |
| -rw-r--r-- | benchmark/bm_vm2_unif1.rb | 8 | |
| -rw-r--r-- | benchmark/bm_vm2_zsuper.rb | 20 | |
| -rwxr-xr-x | benchmark/bm_vm3_gc.rb | 7 | |
| -rw-r--r-- | benchmark/bm_vm3_thread_create_join.rb | 6 | |
| -rw-r--r-- | benchmark/bm_vm3_thread_mutex.rb | 18 | |
| -rw-r--r-- | benchmark/bmx_temp.rb | 9 | |
| -rw-r--r-- | benchmark/buffer_each.yml | 27 | |
| -rw-r--r-- | benchmark/buffer_get.yml | 25 | |
| -rw-r--r-- | benchmark/cgi_escape_html.yml | 31 | |
| -rw-r--r-- | benchmark/complex_float_add.yml | 7 | |
| -rw-r--r-- | benchmark/complex_float_div.yml | 7 | |
| -rw-r--r-- | benchmark/complex_float_mul.yml | 7 | |
| -rw-r--r-- | benchmark/complex_float_new.yml | 7 | |
| -rw-r--r-- | benchmark/complex_float_power.yml | 7 | |
| -rw-r--r-- | benchmark/complex_float_sub.yml | 7 | |
| -rw-r--r-- | benchmark/constant_invalidation.rb | 22 | |
| -rw-r--r-- | benchmark/dir_empty_p.rb | 5 | |
| -rw-r--r-- | benchmark/driver.rb | 251 | |
| -rw-r--r-- | benchmark/enum_lazy_flat_map.yml | 16 | |
| -rw-r--r-- | benchmark/enum_lazy_grep_v_100.rb | 4 | |
| -rw-r--r-- | benchmark/enum_lazy_grep_v_20.rb | 4 | |
| -rw-r--r-- | benchmark/enum_lazy_grep_v_50.rb | 4 | |
| -rw-r--r-- | benchmark/enum_lazy_uniq_100.rb | 4 | |
| -rw-r--r-- | benchmark/enum_lazy_uniq_20.rb | 4 | |
| -rw-r--r-- | benchmark/enum_lazy_uniq_50.rb | 4 | |
| -rw-r--r-- | benchmark/enum_lazy_zip.yml | 22 | |
| -rw-r--r-- | benchmark/enum_minmax.yml | 25 | |
| -rw-r--r-- | benchmark/enum_sort.yml | 15 | |
| -rw-r--r-- | benchmark/enum_tally.yml | 4 | |
| -rw-r--r-- | benchmark/erb_escape_html.yml | 31 | |
| -rw-r--r-- | benchmark/erb_render.yml | 24 | |
| -rw-r--r-- | benchmark/fiber_chain.yml | 36 | |
| -rw-r--r-- | benchmark/fiber_locals.yml | 8 | |
| -rw-r--r-- | benchmark/file_chmod.rb | 9 | |
| -rw-r--r-- | benchmark/file_rename.rb | 11 | |
| -rw-r--r-- | benchmark/float_methods.yml | 14 | |
| -rw-r--r-- | benchmark/float_neg_posi.yml | 8 | |
| -rw-r--r-- | benchmark/float_to_s.yml | 7 | |
| -rw-r--r-- | benchmark/gc/aobench.rb | 1 | |
| -rw-r--r-- | benchmark/gc/binary_trees.rb | 1 | |
| -rw-r--r-- | benchmark/gc/gcbench.rb | 57 | |
| -rw-r--r-- | benchmark/gc/hash1.rb | 11 | |
| -rw-r--r-- | benchmark/gc/hash2.rb | 7 | |
| -rw-r--r-- | benchmark/gc/null.rb | 1 | |
| -rw-r--r-- | benchmark/gc/pentomino.rb | 1 | |
| -rw-r--r-- | benchmark/gc/rdoc.rb | 13 | |
| -rw-r--r-- | benchmark/gc/redblack.rb | 366 | |
| -rw-r--r-- | benchmark/gc/ring.rb | 29 | |
| -rw-r--r-- | benchmark/hash_aref_array.rb | 5 | |
| -rw-r--r-- | benchmark/hash_aref_dsym.rb | 4 | |
| -rw-r--r-- | benchmark/hash_aref_dsym_long.rb | 21 | |
| -rw-r--r-- | benchmark/hash_aref_fix.rb | 4 | |
| -rw-r--r-- | benchmark/hash_aref_flo.rb | 4 | |
| -rw-r--r-- | benchmark/hash_aref_miss.rb | 5 | |
| -rw-r--r-- | benchmark/hash_aref_str.rb | 4 | |
| -rw-r--r-- | benchmark/hash_aref_sym.rb | 9 | |
| -rw-r--r-- | benchmark/hash_aref_sym_long.rb | 13 | |
| -rw-r--r-- | benchmark/hash_defaults.yml | 6 | |
| -rw-r--r-- | benchmark/hash_dup.yml | 8 | |
| -rw-r--r-- | benchmark/hash_first.yml | 11 | |
| -rw-r--r-- | benchmark/hash_flatten.rb | 9 | |
| -rw-r--r-- | benchmark/hash_ident_flo.rb | 4 | |
| -rw-r--r-- | benchmark/hash_ident_num.rb | 4 | |
| -rw-r--r-- | benchmark/hash_ident_obj.rb | 4 | |
| -rw-r--r-- | benchmark/hash_ident_str.rb | 4 | |
| -rw-r--r-- | benchmark/hash_ident_sym.rb | 4 | |
| -rw-r--r-- | benchmark/hash_keys.rb | 9 | |
| -rw-r--r-- | benchmark/hash_literal_small2.rb | 3 | |
| -rw-r--r-- | benchmark/hash_literal_small4.rb | 3 | |
| -rw-r--r-- | benchmark/hash_literal_small8.rb | 3 | |
| -rw-r--r-- | benchmark/hash_long.rb | 4 | |
| -rw-r--r-- | benchmark/hash_shift.rb | 10 | |
| -rw-r--r-- | benchmark/hash_shift_u16.rb | 10 | |
| -rw-r--r-- | benchmark/hash_shift_u24.rb | 10 | |
| -rw-r--r-- | benchmark/hash_shift_u32.rb | 10 | |
| -rw-r--r-- | benchmark/hash_small2.rb | 1 | |
| -rw-r--r-- | benchmark/hash_small4.rb | 1 | |
| -rw-r--r-- | benchmark/hash_small8.rb | 1 | |
| -rw-r--r-- | benchmark/hash_to_proc.rb | 9 | |
| -rw-r--r-- | benchmark/hash_values.rb | 9 | |
| -rw-r--r-- | benchmark/int_quo.rb | 1 | |
| -rw-r--r-- | benchmark/io_copy_stream_write.rb | 24 | |
| -rw-r--r-- | benchmark/io_copy_stream_write_socket.rb | 35 | |
| -rw-r--r-- | benchmark/io_file_create.rb | 13 | |
| -rw-r--r-- | benchmark/io_file_read.rb | 15 | |
| -rw-r--r-- | benchmark/io_file_write.rb | 14 | |
| -rw-r--r-- | benchmark/io_nonblock_noex.rb | 22 | |
| -rw-r--r-- | benchmark/io_nonblock_noex2.rb | 21 | |
| -rw-r--r-- | benchmark/io_pipe_rw.rb | 13 | |
| -rw-r--r-- | benchmark/io_select.rb | 9 | |
| -rw-r--r-- | benchmark/io_select2.rb | 22 | |
| -rw-r--r-- | benchmark/io_select3.rb | 21 | |
| -rw-r--r-- | benchmark/io_write.rb | 22 | |
| -rw-r--r-- | benchmark/irb_color.yml | 13 | |
| -rw-r--r-- | benchmark/irb_exec.yml | 10 | |
| -rw-r--r-- | benchmark/iseq_load_from_binary.yml | 25 | |
| -rw-r--r-- | benchmark/ivar_extend.yml | 23 | |
| -rw-r--r-- | benchmark/kernel_clone.yml | 6 | |
| -rw-r--r-- | benchmark/kernel_float.yml | 5 | |
| -rw-r--r-- | benchmark/kernel_tap.yml | 6 | |
| -rw-r--r-- | benchmark/kernel_then.yml | 6 | |
| -rw-r--r-- | benchmark/keyword_arguments.yml | 13 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/output/driver.rb | 36 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/cstime.rb | 22 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/cutime.rb | 22 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/mjit.rb | 34 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/peak.rb | 151 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/ractor.rb | 122 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/size.rb | 25 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/stime.rb | 22 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/total.rb | 137 | |
| -rw-r--r-- | benchmark/lib/benchmark_driver/runner/utime.rb | 22 | |
| -rw-r--r-- | benchmark/lib/load.rb | 18 | |
| -rw-r--r-- | benchmark/loop_for.rb (renamed from benchmark/bm_loop_for.rb) | 0 | |
| -rw-r--r-- | benchmark/loop_generator.rb (renamed from benchmark/bm_loop_generator.rb) | 0 | |
| -rw-r--r-- | benchmark/loop_times.rb (renamed from benchmark/bm_loop_times.rb) | 0 | |
| -rw-r--r-- | benchmark/loop_whileloop.rb | 4 | |
| -rw-r--r-- | benchmark/loop_whileloop2.rb | 4 | |
| -rw-r--r-- | benchmark/make_fasta_output.rb | 19 | |
| -rw-r--r-- | benchmark/marshal_dump_flo.rb | 2 | |
| -rw-r--r-- | benchmark/marshal_dump_load_geniv.rb | 10 | |
| -rw-r--r-- | benchmark/marshal_dump_load_integer.yml | 22 | |
| -rw-r--r-- | benchmark/marshal_dump_load_time.rb | 1 | |
| -rw-r--r-- | benchmark/masgn.yml | 53 | |
| -rw-r--r-- | benchmark/match_gt4.rb | 1 | |
| -rw-r--r-- | benchmark/match_small.rb | 1 | |
| -rw-r--r-- | benchmark/method_bind_call.yml | 16 | |
| -rw-r--r-- | benchmark/mjit_exivar.yml | 18 | |
| -rw-r--r-- | benchmark/mjit_integer.yml | 32 | |
| -rw-r--r-- | benchmark/mjit_kernel.yml | 20 | |
| -rw-r--r-- | benchmark/mjit_leave.yml | 8 | |
| -rw-r--r-- | benchmark/mjit_opt_cc_insns.yml | 27 | |
| -rw-r--r-- | benchmark/mjit_struct_aref.yml | 10 | |
| -rw-r--r-- | benchmark/module_eqq.yml | 27 | |
| -rw-r--r-- | benchmark/nil_p.yml | 9 | |
| -rw-r--r-- | benchmark/nilclass.yml | 6 | |
| -rw-r--r-- | benchmark/num_zero_p.yml | 8 | |
| -rw-r--r-- | benchmark/numeric_methods.yml | 29 | |
| -rw-r--r-- | benchmark/object_allocate.yml | 21 | |
| -rw-r--r-- | benchmark/objspace_dump_all.yml | 13 | |
| -rw-r--r-- | benchmark/other-lang/eval.rb | 4 | |
| -rw-r--r-- | benchmark/other-lang/fact.py | 2 | |
| -rw-r--r-- | benchmark/other-lang/fact.rb | 4 | |
| -rw-r--r-- | benchmark/other-lang/loop.rb | 4 | |
| -rw-r--r-- | benchmark/pm_array.yml | 19 | |
| -rw-r--r-- | benchmark/prepare_so_count_words.rb | 15 | |
| -rw-r--r-- | benchmark/prepare_so_k_nucleotide.rb | 2 | |
| -rw-r--r-- | benchmark/prepare_so_reverse_complement.rb | 2 | |
| -rw-r--r-- | benchmark/ractor_const.yml | 4 | |
| -rw-r--r-- | benchmark/ractor_float_to_s.yml | 8 | |
| -rw-r--r-- | benchmark/range_last.yml | 4 | |
| -rw-r--r-- | benchmark/range_min.yml | 2 | |
| -rw-r--r-- | benchmark/realpath.yml | 30 | |
| -rw-r--r-- | benchmark/report.rb | 79 | |
| -rw-r--r-- | benchmark/require.yml | 32 | |
| -rw-r--r-- | benchmark/require_thread.yml | 40 | |
| -rw-r--r-- | benchmark/run.rb | 127 | |
| -rw-r--r-- | benchmark/runc.rb | 27 | |
| -rw-r--r-- | benchmark/securerandom.rb | 5 | |
| -rw-r--r-- | benchmark/so_ackermann.rb | 19 | |
| -rw-r--r-- | benchmark/so_array.rb | 23 | |
| -rw-r--r-- | benchmark/so_binary_trees.rb | 62 | |
| -rw-r--r-- | benchmark/so_concatenate.rb | 18 | |
| -rw-r--r-- | benchmark/so_count_words.yml | 65 | |
| -rw-r--r-- | benchmark/so_exception.rb | 61 | |
| -rw-r--r-- | benchmark/so_fannkuch.rb | 45 | |
| -rw-r--r-- | benchmark/so_fasta.rb | 81 | |
| -rw-r--r-- | benchmark/so_k_nucleotide.yml | 155 | |
| -rw-r--r-- | benchmark/so_lists.rb | 47 | |
| -rw-r--r-- | benchmark/so_mandelbrot.rb (renamed from benchmark/bm_so_mandelbrot.rb) | 0 | |
| -rw-r--r-- | benchmark/so_matrix.rb | 48 | |
| -rw-r--r-- | benchmark/so_meteor_contest.rb | 563 | |
| -rw-r--r-- | benchmark/so_nbody.rb | 148 | |
| -rw-r--r-- | benchmark/so_nested_loop.rb | 24 | |
| -rw-r--r-- | benchmark/so_nsieve.rb (renamed from benchmark/bm_so_nsieve.rb) | 0 | |
| -rw-r--r-- | benchmark/so_nsieve_bits.rb | 43 | |
| -rw-r--r-- | benchmark/so_object.rb | 56 | |
| -rw-r--r-- | benchmark/so_partial_sums.rb (renamed from benchmark/bm_so_partial_sums.rb) | 0 | |
| -rw-r--r-- | benchmark/so_pidigits.rb | 92 | |
| -rw-r--r-- | benchmark/so_random.rb | 20 | |
| -rw-r--r-- | benchmark/so_reverse_complement.yml | 137 | |
| -rw-r--r-- | benchmark/so_sieve.rb | 24 | |
| -rw-r--r-- | benchmark/so_spectralnorm.rb (renamed from benchmark/bm_so_spectralnorm.rb) | 0 | |
| -rw-r--r-- | benchmark/string_capitalize.yml | 10 | |
| -rw-r--r-- | benchmark/string_casecmp.yml | 26 | |
| -rw-r--r-- | benchmark/string_casecmp_p.yml | 26 | |
| -rw-r--r-- | benchmark/string_concat.yml | 45 | |
| -rw-r--r-- | benchmark/string_downcase.yml | 18 | |
| -rw-r--r-- | benchmark/string_index.rb | 3 | |
| -rw-r--r-- | benchmark/string_scan_re.rb | 2 | |
| -rw-r--r-- | benchmark/string_scan_str.rb | 2 | |
| -rw-r--r-- | benchmark/string_slice.yml | 11 | |
| -rw-r--r-- | benchmark/string_split.yml | 22 | |
| -rw-r--r-- | benchmark/string_swapcase.yml | 18 | |
| -rw-r--r-- | benchmark/string_upcase.yml | 18 | |
| -rw-r--r-- | benchmark/time_at.yml | 7 | |
| -rw-r--r-- | benchmark/time_new.yml | 4 | |
| -rw-r--r-- | benchmark/time_now.yml | 3 | |
| -rw-r--r-- | benchmark/time_parse.yml | 10 | |
| -rw-r--r-- | benchmark/time_strptime.yml | 13 | |
| -rw-r--r-- | benchmark/time_subsec.rb | 2 | |
| -rw-r--r-- | benchmark/vm_array.yml | 4 | |
| -rw-r--r-- | benchmark/vm_attr_ivar.yml | 14 | |
| -rw-r--r-- | benchmark/vm_attr_ivar_set.yml | 14 | |
| -rw-r--r-- | benchmark/vm_backtrace.rb | 22 | |
| -rw-r--r-- | benchmark/vm_bigarray.yml | 105 | |
| -rw-r--r-- | benchmark/vm_bighash.yml | 4 | |
| -rw-r--r-- | benchmark/vm_block.yml | 9 | |
| -rw-r--r-- | benchmark/vm_block_handler.yml | 27 | |
| -rw-r--r-- | benchmark/vm_blockparam.yml | 7 | |
| -rw-r--r-- | benchmark/vm_blockparam_call.yml | 8 | |
| -rw-r--r-- | benchmark/vm_blockparam_pass.yml | 12 | |
| -rw-r--r-- | benchmark/vm_blockparam_yield.yml | 8 | |
| -rw-r--r-- | benchmark/vm_case.yml | 13 | |
| -rw-r--r-- | benchmark/vm_case_classes.yml | 9 | |
| -rw-r--r-- | benchmark/vm_case_lit.yml | 23 | |
| -rw-r--r-- | benchmark/vm_clearmethodcache.rb | 8 | |
| -rw-r--r-- | benchmark/vm_const.yml | 13 | |
| -rw-r--r-- | benchmark/vm_cvar.yml | 20 | |
| -rw-r--r-- | benchmark/vm_defined_method.yml | 8 | |
| -rw-r--r-- | benchmark/vm_dstr.yml | 6 | |
| -rw-r--r-- | benchmark/vm_dstr_ary.rb | 6 | |
| -rw-r--r-- | benchmark/vm_dstr_bool.rb | 7 | |
| -rw-r--r-- | benchmark/vm_dstr_class_module.rb | 10 | |
| -rw-r--r-- | benchmark/vm_dstr_digit.rb | 7 | |
| -rw-r--r-- | benchmark/vm_dstr_int.rb | 5 | |
| -rw-r--r-- | benchmark/vm_dstr_nil.rb | 6 | |
| -rw-r--r-- | benchmark/vm_dstr_obj.rb | 6 | |
| -rw-r--r-- | benchmark/vm_dstr_obj_def.rb | 8 | |
| -rw-r--r-- | benchmark/vm_dstr_str.rb | 6 | |
| -rw-r--r-- | benchmark/vm_dstr_sym.rb | 6 | |
| -rw-r--r-- | benchmark/vm_ensure.yml | 14 | |
| -rw-r--r-- | benchmark/vm_eval.yml | 4 | |
| -rw-r--r-- | benchmark/vm_fiber_allocate.yml | 8 | |
| -rw-r--r-- | benchmark/vm_fiber_count.yml | 10 | |
| -rw-r--r-- | benchmark/vm_fiber_reuse.yml | 14 | |
| -rw-r--r-- | benchmark/vm_fiber_reuse_gc.yml | 12 | |
| -rw-r--r-- | benchmark/vm_fiber_switch.yml | 9 | |
| -rw-r--r-- | benchmark/vm_float_simple.yml | 8 | |
| -rw-r--r-- | benchmark/vm_freezeobj.yml | 6 | |
| -rw-r--r-- | benchmark/vm_freezestring.yml | 10 | |
| -rw-r--r-- | benchmark/vm_gc.rb | 6 | |
| -rw-r--r-- | benchmark/vm_gc_old_full.rb | 4 | |
| -rw-r--r-- | benchmark/vm_gc_old_immediate.rb | 4 | |
| -rw-r--r-- | benchmark/vm_gc_old_lazy.rb | 4 | |
| -rw-r--r-- | benchmark/vm_gc_short_lived.yml | 9 | |
| -rw-r--r-- | benchmark/vm_gc_short_with_complex_long.yml | 25 | |
| -rw-r--r-- | benchmark/vm_gc_short_with_long.yml | 13 | |
| -rw-r--r-- | benchmark/vm_gc_short_with_symbol.yml | 13 | |
| -rw-r--r-- | benchmark/vm_gc_wb_ary.yml | 12 | |
| -rw-r--r-- | benchmark/vm_gc_wb_ary_promoted.yml | 15 | |
| -rw-r--r-- | benchmark/vm_gc_wb_obj.yml | 15 | |
| -rw-r--r-- | benchmark/vm_gc_wb_obj_promoted.yml | 17 | |
| -rw-r--r-- | benchmark/vm_iclass_super.yml | 20 | |
| -rw-r--r-- | benchmark/vm_ivar.yml | 6 | |
| -rw-r--r-- | benchmark/vm_ivar_embedded_obj_init.yml | 14 | |
| -rw-r--r-- | benchmark/vm_ivar_extended_obj_init.yml | 16 | |
| -rw-r--r-- | benchmark/vm_ivar_generic_get.yml | 17 | |
| -rw-r--r-- | benchmark/vm_ivar_generic_set.yml | 14 | |
| -rw-r--r-- | benchmark/vm_ivar_get.yml | 37 | |
| -rw-r--r-- | benchmark/vm_ivar_get_unintialized.yml | 12 | |
| -rw-r--r-- | benchmark/vm_ivar_lazy_set.yml | 12 | |
| -rw-r--r-- | benchmark/vm_ivar_of_class.yml | 12 | |
| -rw-r--r-- | benchmark/vm_ivar_of_class_set.yml | 11 | |
| -rw-r--r-- | benchmark/vm_ivar_set.yml | 5 | |
| -rw-r--r-- | benchmark/vm_ivar_set_on_instance.yml | 35 | |
| -rw-r--r-- | benchmark/vm_ivar_set_subclass.yml | 20 | |
| -rw-r--r-- | benchmark/vm_length.yml | 8 | |
| -rw-r--r-- | benchmark/vm_lvar_cond_set.yml | 8 | |
| -rw-r--r-- | benchmark/vm_lvar_init.yml | 21 | |
| -rw-r--r-- | benchmark/vm_lvar_set.yml | 4 | |
| -rw-r--r-- | benchmark/vm_method.yml | 8 | |
| -rw-r--r-- | benchmark/vm_method_missing.yml | 11 | |
| -rw-r--r-- | benchmark/vm_method_with_block.yml | 8 | |
| -rw-r--r-- | benchmark/vm_module_ann_const_set.yml | 4 | |
| -rw-r--r-- | benchmark/vm_module_const_set.yml | 8 | |
| -rw-r--r-- | benchmark/vm_mutex.yml | 8 | |
| -rw-r--r-- | benchmark/vm_neq.yml | 7 | |
| -rw-r--r-- | benchmark/vm_newlambda.yml | 4 | |
| -rw-r--r-- | benchmark/vm_not.yml | 6 | |
| -rw-r--r-- | benchmark/vm_poly_method.yml | 24 | |
| -rw-r--r-- | benchmark/vm_poly_method_ov.yml | 24 | |
| -rw-r--r-- | benchmark/vm_poly_same_method.yml | 25 | |
| -rw-r--r-- | benchmark/vm_poly_singleton.yml | 18 | |
| -rw-r--r-- | benchmark/vm_proc.yml | 12 | |
| -rw-r--r-- | benchmark/vm_raise1.yml | 16 | |
| -rw-r--r-- | benchmark/vm_raise2.yml | 16 | |
| -rw-r--r-- | benchmark/vm_regexp.yml | 8 | |
| -rw-r--r-- | benchmark/vm_rescue.yml | 6 | |
| -rw-r--r-- | benchmark/vm_send.yml | 14 | |
| -rw-r--r-- | benchmark/vm_send_cfunc.yml | 3 | |
| -rw-r--r-- | benchmark/vm_simplereturn.yml | 7 | |
| -rw-r--r-- | benchmark/vm_string_literal.yml | 4 | |
| -rw-r--r-- | benchmark/vm_struct_big_aref_hi.yml | 7 | |
| -rw-r--r-- | benchmark/vm_struct_big_aref_lo.yml | 7 | |
| -rw-r--r-- | benchmark/vm_struct_big_aset.yml | 11 | |
| -rw-r--r-- | benchmark/vm_struct_big_href_hi.yml | 7 | |
| -rw-r--r-- | benchmark/vm_struct_big_href_lo.yml | 7 | |
| -rw-r--r-- | benchmark/vm_struct_big_hset.yml | 11 | |
| -rw-r--r-- | benchmark/vm_struct_small_aref.yml | 7 | |
| -rw-r--r-- | benchmark/vm_struct_small_aset.yml | 11 | |
| -rw-r--r-- | benchmark/vm_struct_small_href.yml | 7 | |
| -rw-r--r-- | benchmark/vm_struct_small_hset.yml | 7 | |
| -rw-r--r-- | benchmark/vm_super.yml | 17 | |
| -rw-r--r-- | benchmark/vm_swap.yml | 7 | |
| -rw-r--r-- | benchmark/vm_symbol_block_pass.rb | 13 | |
| -rw-r--r-- | benchmark/vm_thread_alive_check.yml | 8 | |
| -rw-r--r-- | benchmark/vm_thread_close.rb | 6 | |
| -rw-r--r-- | benchmark/vm_thread_condvar1.rb | 28 | |
| -rw-r--r-- | benchmark/vm_thread_condvar2.rb | 35 | |
| -rw-r--r-- | benchmark/vm_thread_create_join.rb | 6 | |
| -rw-r--r-- | benchmark/vm_thread_mutex1.rb | 21 | |
| -rw-r--r-- | benchmark/vm_thread_mutex2.rb | 21 | |
| -rw-r--r-- | benchmark/vm_thread_mutex3.rb | 20 | |
| -rw-r--r-- | benchmark/vm_thread_pass.rb | 15 | |
| -rw-r--r-- | benchmark/vm_thread_pass_flood.rb | 10 | |
| -rw-r--r-- | benchmark/vm_thread_pipe.rb | 17 | |
| -rw-r--r-- | benchmark/vm_thread_queue.rb | 18 | |
| -rw-r--r-- | benchmark/vm_thread_sized_queue.rb | 20 | |
| -rw-r--r-- | benchmark/vm_thread_sized_queue2.rb | 23 | |
| -rw-r--r-- | benchmark/vm_thread_sized_queue3.rb | 22 | |
| -rw-r--r-- | benchmark/vm_thread_sized_queue4.rb | 26 | |
| -rw-r--r-- | benchmark/vm_thread_sleep.yml | 4 | |
| -rw-r--r-- | benchmark/vm_unif1.yml | 7 | |
| -rw-r--r-- | benchmark/vm_yield.yml | 13 | |
| -rw-r--r-- | benchmark/vm_zsuper.yml | 18 | |
| -rw-r--r-- | benchmark/wc.input.base | 25 | |
| -rw-r--r-- | bignum.c | 8683 | |
| -rwxr-xr-x | bin/erb | 155 | |
| -rwxr-xr-x | bin/gem | 19 | |
| -rwxr-xr-x | bin/irb | 20 | |
| -rwxr-xr-x | bin/rake | 31 | |
| -rwxr-xr-x | bin/rdoc | 35 | |
| -rwxr-xr-x | bin/ri | 5 | |
| -rwxr-xr-x | bin/testrb | 15 | |
| -rw-r--r-- | bootstraptest/pending.rb | 24 | |
| -rwxr-xr-x | bootstraptest/runner.rb | 795 | |
| -rw-r--r-- | bootstraptest/test_attr.rb | 16 | |
| -rw-r--r-- | bootstraptest/test_autoload.rb | 82 | |
| -rw-r--r-- | bootstraptest/test_block.rb | 72 | |
| -rw-r--r-- | bootstraptest/test_class.rb | 10 | |
| -rw-r--r-- | bootstraptest/test_constant_cache.rb | 187 | |
| -rw-r--r-- | bootstraptest/test_env.rb | 12 | |
| -rw-r--r-- | bootstraptest/test_eval.rb | 81 | |
| -rw-r--r-- | bootstraptest/test_exception.rb | 32 | |
| -rw-r--r-- | bootstraptest/test_fiber.rb | 39 | |
| -rw-r--r-- | bootstraptest/test_flow.rb | 78 | |
| -rw-r--r-- | bootstraptest/test_fork.rb | 42 | |
| -rw-r--r-- | bootstraptest/test_insns.rb | 440 | |
| -rw-r--r-- | bootstraptest/test_io.rb | 25 | |
| -rw-r--r-- | bootstraptest/test_jump.rb | 38 | |
| -rw-r--r-- | bootstraptest/test_literal.rb | 70 | |
| -rw-r--r-- | bootstraptest/test_literal_suffix.rb | 54 | |
| -rw-r--r-- | bootstraptest/test_method.rb | 168 | |
| -rw-r--r-- | bootstraptest/test_objectspace.rb | 21 | |
| -rw-r--r-- | bootstraptest/test_proc.rb | 105 | |
| -rw-r--r-- | bootstraptest/test_ractor.rb | 1628 | |
| -rw-r--r-- | bootstraptest/test_string.rb | 3 | |
| -rw-r--r-- | bootstraptest/test_syntax.rb | 26 | |
| -rw-r--r-- | bootstraptest/test_thread.rb | 176 | |
| -rw-r--r-- | bootstraptest/test_yjit.rb | 3530 | |
| -rw-r--r-- | bootstraptest/test_yjit_30k_ifelse.rb | 241023 | |
| -rw-r--r-- | bootstraptest/test_yjit_30k_methods.rb | 121018 | |
| -rw-r--r-- | bootstraptest/test_yjit_rust_port.rb | 422 | |
| -rw-r--r-- | builtin.c | 69 | |
| -rw-r--r-- | builtin.h | 121 | |
| -rw-r--r-- | ccan/build_assert/build_assert.h | 40 | |
| -rw-r--r-- | ccan/check_type/check_type.h | 63 | |
| -rw-r--r-- | ccan/container_of/container_of.h | 142 | |
| -rw-r--r-- | ccan/licenses/BSD-MIT | 17 | |
| -rw-r--r-- | ccan/licenses/CC0 | 28 | |
| -rw-r--r-- | ccan/list/list.h | 789 | |
| -rw-r--r-- | ccan/str/str.h | 17 | |
| -rw-r--r-- | class.c | 2499 | |
| -rw-r--r-- | common.mk | 18392 | |
| -rw-r--r-- | compar.c | 223 | |
| -rw-r--r-- | compile.c | 16182 | |
| -rw-r--r-- | complex.c | 2378 | |
| -rw-r--r-- | configure.ac | 4570 | |
| -rw-r--r-- | configure.in | 2776 | |
| -rw-r--r-- | constant.h | 55 | |
| -rw-r--r-- | cont.c | 3647 | |
| -rw-r--r-- | coroutine/amd64/Context.S | 46 | |
| -rw-r--r-- | coroutine/amd64/Context.h | 85 | |
| -rw-r--r-- | coroutine/arm32/Context.S | 33 | |
| -rw-r--r-- | coroutine/arm32/Context.h | 59 | |
| -rw-r--r-- | coroutine/arm64/Context.S | 73 | |
| -rw-r--r-- | coroutine/arm64/Context.h | 83 | |
| -rw-r--r-- | coroutine/asyncify/Context.c | 10 | |
| -rw-r--r-- | coroutine/asyncify/Context.h | 93 | |
| -rw-r--r-- | coroutine/emscripten/Context.c | 8 | |
| -rw-r--r-- | coroutine/emscripten/Context.h | 77 | |
| -rw-r--r-- | coroutine/ppc/Context.S | 90 | |
| -rw-r--r-- | coroutine/ppc/Context.h | 58 | |
| -rw-r--r-- | coroutine/ppc64/Context.S | 89 | |
| -rw-r--r-- | coroutine/ppc64/Context.h | 57 | |
| -rw-r--r-- | coroutine/ppc64le/Context.S | 75 | |
| -rw-r--r-- | coroutine/ppc64le/Context.h | 57 | |
| -rw-r--r-- | coroutine/pthread/Context.c | 272 | |
| -rw-r--r-- | coroutine/pthread/Context.h | 63 | |
| -rw-r--r-- | coroutine/riscv64/Context.S | 87 | |
| -rw-r--r-- | coroutine/riscv64/Context.h | 46 | |
| -rw-r--r-- | coroutine/ucontext/Context.c | 23 | |
| -rw-r--r-- | coroutine/ucontext/Context.h | 79 | |
| -rw-r--r-- | coroutine/universal/Context.S | 16 | |
| -rw-r--r-- | coroutine/universal/Context.h | 21 | |
| -rw-r--r-- | coroutine/win32/Context.S | 47 | |
| -rw-r--r-- | coroutine/win32/Context.asm | 55 | |
| -rw-r--r-- | coroutine/win32/Context.h | 65 | |
| -rw-r--r-- | coroutine/win64/Context.S | 77 | |
| -rw-r--r-- | coroutine/win64/Context.asm | 79 | |
| -rw-r--r-- | coroutine/win64/Context.h | 75 | |
| -rw-r--r-- | coroutine/x86/Context.S | 42 | |
| -rw-r--r-- | coroutine/x86/Context.h | 61 | |
| -rw-r--r-- | coverage/README | 17 | |
| -rw-r--r-- | cygwin/GNUmakefile.in | 82 | |
| -rw-r--r-- | darray.h | 179 | |
| -rw-r--r-- | debug.c | 605 | |
| -rw-r--r-- | debug.h | 41 | |
| -rw-r--r-- | debug_counter.c | 152 | |
| -rw-r--r-- | debug_counter.h | 434 | |
| -rw-r--r-- | defs/gmake.mk | 482 | |
| -rw-r--r-- | defs/id.def | 219 | |
| -rw-r--r-- | defs/keywords | 8 | |
| -rw-r--r-- | defs/known_errors.def | 248 | |
| -rw-r--r-- | defs/lex.c.src | 8 | |
| -rw-r--r-- | defs/opt_insn_unif.def | 2 | |
| -rw-r--r-- | defs/opt_operand.def | 51 | |
| -rw-r--r-- | defs/separated_version.mk | 38 | |
| -rw-r--r-- | defs/universal.mk | 5 | |
| -rw-r--r-- | dir.c | 3332 | |
| -rw-r--r-- | dir.rb | 314 | |
| -rw-r--r-- | dln.c | 1581 | |
| -rw-r--r-- | dln.h | 41 | |
| -rw-r--r-- | dln_find.c | 344 | |
| -rw-r--r-- | dmydln.c | 3 | |
| -rw-r--r-- | dmyenc.c | 10 | |
| -rw-r--r-- | dmyencoding.c | 2 | |
| -rw-r--r-- | dmyversion.c | 2 | |
| -rw-r--r-- | doc/.document | 9 | |
| -rw-r--r-- | doc/ChangeLog-0.06_to_0.52 | 1147 | |
| -rw-r--r-- | doc/ChangeLog-0.50_to_0.60 | 462 | |
| -rw-r--r-- | doc/ChangeLog-0.60_to_1.1 | 3955 | |
| -rw-r--r-- | doc/ChangeLog-1.8.0 | 162 | |
| -rw-r--r-- | doc/ChangeLog-1.9.3 | 12219 | |
| -rw-r--r-- | doc/ChangeLog-2.0.0 | 24015 | |
| -rw-r--r-- | doc/ChangeLog-2.1.0 | 18060 | |
| -rw-r--r-- | doc/ChangeLog-2.2.0 | 12157 | |
| -rw-r--r-- | doc/ChangeLog-2.3.0 | 12188 | |
| -rw-r--r-- | doc/ChangeLog-2.4.0 | 9492 | |
| -rw-r--r-- | doc/ChangeLog-YARV | 246 | |
| -rw-r--r-- | doc/NEWS-1.8.7 | 648 | |
| -rw-r--r-- | doc/NEWS-1.9.1 | 422 | |
| -rw-r--r-- | doc/NEWS-1.9.2 | 498 | |
| -rw-r--r-- | doc/NEWS/NEWS-1.8.7 | 669 | |
| -rw-r--r-- | doc/NEWS/NEWS-1.9.1 | 429 | |
| -rw-r--r-- | doc/NEWS/NEWS-1.9.2 | 509 | |
| -rw-r--r-- | doc/NEWS/NEWS-1.9.3 | 341 | |
| -rw-r--r-- | doc/NEWS/NEWS-2.0.0 | 529 | |
| -rw-r--r-- | doc/NEWS/NEWS-2.1.0 | 376 | |
| -rw-r--r-- | doc/NEWS/NEWS-2.2.0 | 359 | |
| -rw-r--r-- | doc/NEWS/NEWS-2.3.0 | 384 | |
| -rw-r--r-- | doc/NEWS/NEWS-2.4.0 | 399 | |
| -rw-r--r-- | doc/NEWS/NEWS-2.5.0 | 565 | |
| -rw-r--r-- | doc/NEWS/NEWS-2.6.0 | 662 | |
| -rw-r--r-- | doc/NEWS/NEWS-2.7.0 | 845 | |
| -rw-r--r-- | doc/NEWS/NEWS-3.0.0.md | 829 | |
| -rw-r--r-- | doc/NEWS/NEWS-3.1.0.md | 660 | |
| -rw-r--r-- | doc/bsearch.rdoc | 120 | |
| -rw-r--r-- | doc/bug_triaging.rdoc | 79 | |
| -rw-r--r-- | doc/case_mapping.rdoc | 116 | |
| -rw-r--r-- | doc/character_selectors.rdoc | 97 | |
| -rw-r--r-- | doc/command_injection.rdoc | 29 | |
| -rw-r--r-- | doc/contributing.md | 12 | |
| -rw-r--r-- | doc/contributing/building_ruby.md | 172 | |
| -rw-r--r-- | doc/contributing/documentation_guide.md | 435 | |
| -rw-r--r-- | doc/contributing/making_changes_to_ruby.md | 28 | |
| -rw-r--r-- | doc/contributing/making_changes_to_stdlibs.md | 49 | |
| -rw-r--r-- | doc/contributing/reporting_issues.md | 91 | |
| -rw-r--r-- | doc/contributing/testing_ruby.md | 138 | |
| -rw-r--r-- | doc/csv/arguments/io.rdoc | 5 | |
| -rw-r--r-- | doc/csv/options/common/col_sep.rdoc | 63 | |
| -rw-r--r-- | doc/csv/options/common/quote_char.rdoc | 42 | |
| -rw-r--r-- | doc/csv/options/common/row_sep.rdoc | 100 | |
| -rw-r--r-- | doc/csv/options/generating/force_quotes.rdoc | 17 | |
| -rw-r--r-- | doc/csv/options/generating/quote_empty.rdoc | 12 | |
| -rw-r--r-- | doc/csv/options/generating/write_converters.rdoc | 33 | |
| -rw-r--r-- | doc/csv/options/generating/write_empty_value.rdoc | 15 | |
| -rw-r--r-- | doc/csv/options/generating/write_headers.rdoc | 29 | |
| -rw-r--r-- | doc/csv/options/generating/write_nil_value.rdoc | 14 | |
| -rw-r--r-- | doc/csv/options/parsing/converters.rdoc | 46 | |
| -rw-r--r-- | doc/csv/options/parsing/empty_value.rdoc | 13 | |
| -rw-r--r-- | doc/csv/options/parsing/field_size_limit.rdoc | 39 | |
| -rw-r--r-- | doc/csv/options/parsing/header_converters.rdoc | 43 | |
| -rw-r--r-- | doc/csv/options/parsing/headers.rdoc | 63 | |
| -rw-r--r-- | doc/csv/options/parsing/liberal_parsing.rdoc | 19 | |
| -rw-r--r-- | doc/csv/options/parsing/nil_value.rdoc | 12 | |
| -rw-r--r-- | doc/csv/options/parsing/return_headers.rdoc | 22 | |
| -rw-r--r-- | doc/csv/options/parsing/skip_blanks.rdoc | 31 | |
| -rw-r--r-- | doc/csv/options/parsing/skip_lines.rdoc | 37 | |
| -rw-r--r-- | doc/csv/options/parsing/strip.rdoc | 15 | |
| -rw-r--r-- | doc/csv/options/parsing/unconverted_fields.rdoc | 27 | |
| -rw-r--r-- | doc/csv/recipes/filtering.rdoc | 156 | |
| -rw-r--r-- | doc/csv/recipes/generating.rdoc | 244 | |
| -rw-r--r-- | doc/csv/recipes/parsing.rdoc | 543 | |
| -rw-r--r-- | doc/csv/recipes/recipes.rdoc | 6 | |
| -rw-r--r-- | doc/date/calendars.rdoc | 62 | |
| -rw-r--r-- | doc/dig_methods.rdoc | 82 | |
| -rw-r--r-- | doc/dtrace_probes.rdoc | 184 | |
| -rw-r--r-- | doc/encodings.rdoc | 479 | |
| -rw-r--r-- | doc/etc.rd | 75 | |
| -rw-r--r-- | doc/etc.rd.ja | 75 | |
| -rw-r--r-- | doc/examples/files.rdoc | 26 | |
| -rw-r--r-- | doc/extension.ja.rdoc | 1869 | |
| -rw-r--r-- | doc/extension.rdoc | 2221 | |
| -rw-r--r-- | doc/fiber.md | 232 | |
| -rw-r--r-- | doc/format_specifications.rdoc | 348 | |
| -rw-r--r-- | doc/forwardable.rd | 83 | |
| -rw-r--r-- | doc/forwardable.rd.ja | 46 | |
| -rw-r--r-- | doc/globals.rdoc | 69 | |
| -rw-r--r-- | doc/implicit_conversion.rdoc | 221 | |
| -rw-r--r-- | doc/irb/irb-tools.rd.ja | 116 | |
| -rw-r--r-- | doc/irb/irb.rd | 391 | |
| -rw-r--r-- | doc/irb/irb.rd.ja | 411 | |
| -rw-r--r-- | doc/keywords.rdoc | 162 | |
| -rw-r--r-- | doc/maintainers.rdoc | 424 | |
| -rw-r--r-- | doc/marshal.rdoc | 313 | |
| -rw-r--r-- | doc/matchdata/begin.rdoc | 30 | |
| -rw-r--r-- | doc/matchdata/end.rdoc | 30 | |
| -rw-r--r-- | doc/matchdata/offset.rdoc | 31 | |
| -rw-r--r-- | doc/math/math.rdoc | 117 | |
| -rw-r--r-- | doc/memory_view.md | 167 | |
| -rw-r--r-- | doc/mjit/mjit.md | 39 | |
| -rw-r--r-- | doc/net-http/examples.rdoc | 31 | |
| -rw-r--r-- | doc/net-http/included_getters.rdoc | 3 | |
| -rw-r--r-- | doc/optparse/.document | 1 | |
| -rw-r--r-- | doc/optparse/argument_converters.rdoc | 380 | |
| -rw-r--r-- | doc/optparse/creates_option.rdoc | 7 | |
| -rw-r--r-- | doc/optparse/option_params.rdoc | 509 | |
| -rw-r--r-- | doc/optparse/ruby/argument_keywords.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/argument_strings.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/argv.rb | 2 | |
| -rw-r--r-- | doc/optparse/ruby/array.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/basic.rb | 17 | |
| -rw-r--r-- | doc/optparse/ruby/block.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/collected_options.rb | 8 | |
| -rw-r--r-- | doc/optparse/ruby/custom_converter.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/date.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/datetime.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/decimal_integer.rb | 7 | |
| -rw-r--r-- | doc/optparse/ruby/decimal_numeric.rb | 7 | |
| -rw-r--r-- | doc/optparse/ruby/default_values.rb | 8 | |
| -rw-r--r-- | doc/optparse/ruby/descriptions.rb | 15 | |
| -rw-r--r-- | doc/optparse/ruby/explicit_array_values.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/explicit_hash_values.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/false_class.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/float.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/help.rb | 18 | |
| -rw-r--r-- | doc/optparse/ruby/help_banner.rb | 7 | |
| -rw-r--r-- | doc/optparse/ruby/help_format.rb | 25 | |
| -rw-r--r-- | doc/optparse/ruby/help_program_name.rb | 7 | |
| -rw-r--r-- | doc/optparse/ruby/integer.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/long_names.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/long_optional.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/long_required.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/long_simple.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/long_with_negation.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/match_converter.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/matched_values.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/method.rb | 11 | |
| -rw-r--r-- | doc/optparse/ruby/missing_options.rb | 12 | |
| -rw-r--r-- | doc/optparse/ruby/mixed_names.rb | 12 | |
| -rw-r--r-- | doc/optparse/ruby/name_abbrev.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/no_abbreviation.rb | 10 | |
| -rw-r--r-- | doc/optparse/ruby/numeric.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/object.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/octal_integer.rb | 7 | |
| -rw-r--r-- | doc/optparse/ruby/optional_argument.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/parse.rb | 13 | |
| -rw-r--r-- | doc/optparse/ruby/parse_bang.rb | 13 | |
| -rw-r--r-- | doc/optparse/ruby/proc.rb | 13 | |
| -rw-r--r-- | doc/optparse/ruby/regexp.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/required_argument.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/shellwords.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/short_names.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/short_optional.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/short_range.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/short_required.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/short_simple.rb | 9 | |
| -rw-r--r-- | doc/optparse/ruby/string.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/terminator.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/time.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/true_class.rb | 6 | |
| -rw-r--r-- | doc/optparse/ruby/uri.rb | 6 | |
| -rw-r--r-- | doc/optparse/tutorial.rdoc | 835 | |
| -rw-r--r-- | doc/packed_data.rdoc | 590 | |
| -rw-r--r-- | doc/pty/README | 84 | |
| -rw-r--r-- | doc/pty/README.expect | 22 | |
| -rw-r--r-- | doc/pty/README.expect.ja | 28 | |
| -rw-r--r-- | doc/pty/README.ja | 88 | |
| -rw-r--r-- | doc/ractor.md | 952 | |
| -rw-r--r-- | doc/rake/CHANGES | 440 | |
| -rw-r--r-- | doc/rake/README | 196 | |
| -rw-r--r-- | doc/rake/command_line_usage.rdoc | 102 | |
| -rw-r--r-- | doc/rake/example/Rakefile1 | 38 | |
| -rw-r--r-- | doc/rake/example/Rakefile2 | 35 | |
| -rw-r--r-- | doc/rake/example/a.c | 6 | |
| -rw-r--r-- | doc/rake/example/b.c | 6 | |
| -rw-r--r-- | doc/rake/example/main.c | 11 | |
| -rw-r--r-- | doc/rake/glossary.rdoc | 51 | |
| -rw-r--r-- | doc/rake/jamis.rb | 591 | |
| -rw-r--r-- | doc/rake/proto_rake.rdoc | 127 | |
| -rw-r--r-- | doc/rake/rakefile.rdoc | 534 | |
| -rw-r--r-- | doc/rake/rational.rdoc | 151 | |
| -rw-r--r-- | doc/rake/release_notes/rake-0.8.7.rdoc | 55 | |
| -rw-r--r-- | doc/rdoc/markup_reference.rb | 1257 | |
| -rw-r--r-- | doc/re.rdoc | 582 | |
| -rw-r--r-- | doc/regexp.rdoc | 801 | |
| -rw-r--r-- | doc/rubygems/ChangeLog | 5689 | |
| -rw-r--r-- | doc/rubygems/History.txt | 852 | |
| -rw-r--r-- | doc/rubygems/LICENSE.txt | 53 | |
| -rw-r--r-- | doc/rubygems/README | 41 | |
| -rw-r--r-- | doc/security.rdoc | 139 | |
| -rw-r--r-- | doc/shell.rd | 347 | |
| -rw-r--r-- | doc/shell.rd.ja | 335 | |
| -rw-r--r-- | doc/signals.rdoc | 106 | |
| -rw-r--r-- | doc/standard_library.rdoc | 118 | |
| -rw-r--r-- | doc/strftime_formatting.rdoc | 527 | |
| -rw-r--r-- | doc/string/b.rdoc | 14 | |
| -rw-r--r-- | doc/string/bytes.rdoc | 6 | |
| -rw-r--r-- | doc/string/bytesize.rdoc | 11 | |
| -rw-r--r-- | doc/string/center.rdoc | 16 | |
| -rw-r--r-- | doc/string/chars.rdoc | 5 | |
| -rw-r--r-- | doc/string/chomp.rdoc | 29 | |
| -rw-r--r-- | doc/string/chop.rdoc | 16 | |
| -rw-r--r-- | doc/string/codepoints.rdoc | 6 | |
| -rw-r--r-- | doc/string/delete_prefix.rdoc | 8 | |
| -rw-r--r-- | doc/string/delete_suffix.rdoc | 8 | |
| -rw-r--r-- | doc/string/each_byte.rdoc | 17 | |
| -rw-r--r-- | doc/string/each_char.rdoc | 17 | |
| -rw-r--r-- | doc/string/each_codepoint.rdoc | 18 | |
| -rw-r--r-- | doc/string/each_grapheme_cluster.rdoc | 12 | |
| -rw-r--r-- | doc/string/each_line.rdoc | 60 | |
| -rw-r--r-- | doc/string/end_with_p.rdoc | 11 | |
| -rw-r--r-- | doc/string/force_encoding.rdoc | 20 | |
| -rw-r--r-- | doc/string/grapheme_clusters.rdoc | 6 | |
| -rw-r--r-- | doc/string/index.rdoc | 38 | |
| -rw-r--r-- | doc/string/length.rdoc | 13 | |
| -rw-r--r-- | doc/string/ljust.rdoc | 16 | |
| -rw-r--r-- | doc/string/new.rdoc | 51 | |
| -rw-r--r-- | doc/string/ord.rdoc | 6 | |
| -rw-r--r-- | doc/string/partition.rdoc | 24 | |
| -rw-r--r-- | doc/string/rjust.rdoc | 16 | |
| -rw-r--r-- | doc/string/rpartition.rdoc | 24 | |
| -rw-r--r-- | doc/string/scrub.rdoc | 25 | |
| -rw-r--r-- | doc/string/split.rdoc | 86 | |
| -rw-r--r-- | doc/string/start_with_p.rdoc | 18 | |
| -rw-r--r-- | doc/string/sum.rdoc | 11 | |
| -rw-r--r-- | doc/symbol/casecmp.rdoc | 27 | |
| -rw-r--r-- | doc/symbol/casecmp_p.rdoc | 26 | |
| -rw-r--r-- | doc/syntax.rdoc | 39 | |
| -rw-r--r-- | doc/syntax/assignment.rdoc | 483 | |
| -rw-r--r-- | doc/syntax/calling_methods.rdoc | 429 | |
| -rw-r--r-- | doc/syntax/comments.rdoc | 253 | |
| -rw-r--r-- | doc/syntax/control_expressions.rdoc | 571 | |
| -rw-r--r-- | doc/syntax/exceptions.rdoc | 102 | |
| -rw-r--r-- | doc/syntax/literals.rdoc | 534 | |
| -rw-r--r-- | doc/syntax/methods.rdoc | 652 | |
| -rw-r--r-- | doc/syntax/miscellaneous.rdoc | 136 | |
| -rw-r--r-- | doc/syntax/modules_and_classes.rdoc | 376 | |
| -rw-r--r-- | doc/syntax/pattern_matching.rdoc | 540 | |
| -rw-r--r-- | doc/syntax/precedence.rdoc | 64 | |
| -rw-r--r-- | doc/syntax/refinements.rdoc | 284 | |
| -rw-r--r-- | doc/timezones.rdoc | 108 | |
| -rw-r--r-- | doc/transcode.rdoc | 52 | |
| -rw-r--r-- | doc/yarvarch.en (renamed from template/yarvarch.en) | 0 | |
| -rw-r--r-- | doc/yarvarch.ja | 454 | |
| -rw-r--r-- | doc/yjit/yjit.md | 417 | |
| -rw-r--r-- | doc/yjit/yjit_hacking.md | 75 | |
| -rw-r--r-- | enc/Makefile.in | 44 | |
| -rw-r--r-- | enc/ascii.c | 17 | |
| -rw-r--r-- | enc/big5.c | 47 | |
| -rw-r--r-- | enc/cesu_8.c | 469 | |
| -rw-r--r-- | enc/cp949.c | 13 | |
| -rw-r--r-- | enc/depend | 10833 | |
| -rw-r--r-- | enc/ebcdic.h | 11 | |
| -rw-r--r-- | enc/emacs_mule.c | 14 | |
| -rw-r--r-- | enc/encdb.c | 15 | |
| -rw-r--r-- | enc/encinit.c.erb | 38 | |
| -rw-r--r-- | enc/euc_jp.c | 336 | |
| -rw-r--r-- | enc/euc_kr.c | 34 | |
| -rw-r--r-- | enc/euc_tw.c | 13 | |
| -rw-r--r-- | enc/gb18030.c | 19 | |
| -rw-r--r-- | enc/gb2312.c | 4 | |
| -rw-r--r-- | enc/gbk.c | 11 | |
| -rw-r--r-- | enc/iso_2022_jp.h | 9 | |
| -rw-r--r-- | enc/iso_8859.h | 1 | |
| -rw-r--r-- | enc/iso_8859_1.c | 71 | |
| -rw-r--r-- | enc/iso_8859_10.c | 66 | |
| -rw-r--r-- | enc/iso_8859_11.c | 7 | |
| -rw-r--r-- | enc/iso_8859_13.c | 82 | |
| -rw-r--r-- | enc/iso_8859_14.c | 75 | |
| -rw-r--r-- | enc/iso_8859_15.c | 72 | |
| -rw-r--r-- | enc/iso_8859_16.c | 74 | |
| -rw-r--r-- | enc/iso_8859_2.c | 71 | |
| -rw-r--r-- | enc/iso_8859_3.c | 75 | |
| -rw-r--r-- | enc/iso_8859_4.c | 65 | |
| -rw-r--r-- | enc/iso_8859_5.c | 41 | |
| -rw-r--r-- | enc/iso_8859_6.c | 7 | |
| -rw-r--r-- | enc/iso_8859_7.c | 73 | |
| -rw-r--r-- | enc/iso_8859_8.c | 7 | |
| -rw-r--r-- | enc/iso_8859_9.c | 87 | |
| -rw-r--r-- | enc/jis/props.h.blt | 217 | |
| -rw-r--r-- | enc/jis/props.kwd | 52 | |
| -rw-r--r-- | enc/jis/props.src | 52 | |
| -rw-r--r-- | enc/koi8_r.c | 10 | |
| -rw-r--r-- | enc/koi8_u.c | 9 | |
| -rwxr-xr-x | enc/make_encmake.rb | 115 | |
| -rw-r--r-- | enc/mktable.c | 1184 | |
| -rw-r--r-- | enc/prelude.rb | 6 | |
| -rw-r--r-- | enc/shift_jis.c | 354 | |
| -rw-r--r-- | enc/shift_jis.h | 546 | |
| -rw-r--r-- | enc/trans/GB/GB12345%UCS.src | 61 | |
| -rw-r--r-- | enc/trans/GB/GB2312%UCS.src | 75 | |
| -rw-r--r-- | enc/trans/GB/UCS%GB12345.src | 61 | |
| -rw-r--r-- | enc/trans/GB/UCS%GB2312.src | 75 | |
| -rw-r--r-- | enc/trans/JIS/JISX0201-KANA%UCS.src | 51 | |
| -rw-r--r-- | enc/trans/JIS/JISX0208@1990%UCS.src | 54 | |
| -rw-r--r-- | enc/trans/JIS/JISX0212%UCS.src | 64 | |
| -rw-r--r-- | enc/trans/JIS/JISX0213-1%UCS@BMP.src | 1926 | |
| -rw-r--r-- | enc/trans/JIS/JISX0213-1%UCS@SIP.src | 60 | |
| -rw-r--r-- | enc/trans/JIS/JISX0213-2%UCS@BMP.src | 2193 | |
| -rw-r--r-- | enc/trans/JIS/JISX0213-2%UCS@SIP.src | 311 | |
| -rw-r--r-- | enc/trans/JIS/UCS%JISX0201-KANA.src | 52 | |
| -rw-r--r-- | enc/trans/JIS/UCS%JISX0208@1990.src | 53 | |
| -rw-r--r-- | enc/trans/JIS/UCS%JISX0212.src | 63 | |
| -rw-r--r-- | enc/trans/JIS/UCS@BMP%JISX0213-1.src | 1922 | |
| -rw-r--r-- | enc/trans/JIS/UCS@BMP%JISX0213-2.src | 2189 | |
| -rw-r--r-- | enc/trans/JIS/UCS@SIP%JISX0213-1.src | 56 | |
| -rw-r--r-- | enc/trans/JIS/UCS@SIP%JISX0213-2.src | 307 | |
| -rw-r--r-- | enc/trans/big5-hkscs-tbl.rb | 18919 | |
| -rw-r--r-- | enc/trans/big5-tbl.rb | 13705 | |
| -rw-r--r-- | enc/trans/big5.trans | 19 | |
| -rw-r--r-- | enc/trans/cesu_8.trans | 85 | |
| -rw-r--r-- | enc/trans/chinese.trans | 3 | |
| -rw-r--r-- | enc/trans/ebcdic.trans | 278 | |
| -rw-r--r-- | enc/trans/emoji.trans | 3 | |
| -rw-r--r-- | enc/trans/emoji_iso2022_kddi.trans | 5 | |
| -rw-r--r-- | enc/trans/emoji_sjis_docomo.trans | 3 | |
| -rw-r--r-- | enc/trans/emoji_sjis_kddi.trans | 3 | |
| -rw-r--r-- | enc/trans/emoji_sjis_softbank.trans | 3 | |
| -rw-r--r-- | enc/trans/escape.trans | 10 | |
| -rw-r--r-- | enc/trans/euckr-tbl.rb | 2 | |
| -rw-r--r-- | enc/trans/gb18030.trans | 11 | |
| -rw-r--r-- | enc/trans/gbk-tbl.rb | 1 | |
| -rw-r--r-- | enc/trans/gbk.trans | 3 | |
| -rw-r--r-- | enc/trans/ibm720-tbl.rb | 122 | |
| -rw-r--r-- | enc/trans/ibm737-tbl.rb | 130 | |
| -rw-r--r-- | enc/trans/iso-8859-16-tbl.rb | 98 | |
| -rw-r--r-- | enc/trans/iso2022.trans | 3 | |
| -rw-r--r-- | enc/trans/japanese.trans | 3 | |
| -rw-r--r-- | enc/trans/japanese_euc.trans | 15 | |
| -rw-r--r-- | enc/trans/japanese_sjis.trans | 3 | |
| -rw-r--r-- | enc/trans/korean.trans | 3 | |
| -rw-r--r-- | enc/trans/newline.trans | 30 | |
| -rw-r--r-- | enc/trans/single_byte.trans | 15 | |
| -rw-r--r-- | enc/trans/transdb.c | 2 | |
| -rw-r--r-- | enc/trans/ucm/glibc-BIG5-2.3.3.ucm | 14087 | |
| -rw-r--r-- | enc/trans/ucm/glibc-BIG5HKSCS-2.3.3.ucm | 18332 | |
| -rw-r--r-- | enc/trans/ucm/windows-950-2000.ucm | 20379 | |
| -rw-r--r-- | enc/trans/ucm/windows-950_hkscs-2001.ucm | 23446 | |
| -rw-r--r-- | enc/trans/utf8_mac-tbl.rb | 23655 | |
| -rw-r--r-- | enc/trans/utf8_mac.trans | 160 | |
| -rw-r--r-- | enc/trans/utf_16_32.trans | 191 | |
| -rw-r--r-- | enc/trans/windows-1255-tbl.rb | 3 | |
| -rw-r--r-- | enc/unicode.c | 2431 | |
| -rw-r--r-- | enc/unicode/15.0.0/casefold.h | 7629 | |
| -rw-r--r-- | enc/unicode/15.0.0/name2ctype.h | 45690 | |
| -rw-r--r-- | enc/unicode/name2ctype.h | 17986 | |
| -rw-r--r-- | enc/unicode/name2ctype.h.blt | 17986 | |
| -rw-r--r-- | enc/unicode/name2ctype.kwd | 16712 | |
| -rw-r--r-- | enc/unicode/name2ctype.src | 16712 | |
| -rw-r--r-- | enc/us_ascii.c | 18 | |
| -rw-r--r-- | enc/utf_16_32.h | 5 | |
| -rw-r--r-- | enc/utf_16be.c | 21 | |
| -rw-r--r-- | enc/utf_16le.c | 24 | |
| -rw-r--r-- | enc/utf_32be.c | 37 | |
| -rw-r--r-- | enc/utf_32le.c | 36 | |
| -rw-r--r-- | enc/utf_7.h | 2 | |
| -rw-r--r-- | enc/utf_8.c | 68 | |
| -rw-r--r-- | enc/windows_1250.c | 271 | |
| -rw-r--r-- | enc/windows_1251.c | 57 | |
| -rw-r--r-- | enc/windows_1252.c | 260 | |
| -rw-r--r-- | enc/windows_1253.c | 297 | |
| -rw-r--r-- | enc/windows_1254.c | 302 | |
| -rw-r--r-- | enc/windows_1257.c | 304 | |
| -rw-r--r-- | enc/windows_31j.c | 81 | |
| -rw-r--r-- | enc/x_emoji.h | 4 | |
| -rw-r--r-- | encindex.h | 70 | |
| -rw-r--r-- | encoding.c | 1563 | |
| -rw-r--r-- | enum.c | 4620 | |
| -rw-r--r-- | enumerator.c | 4182 | |
| -rw-r--r-- | error.c | 2950 | |
| -rw-r--r-- | eval.c | 2129 | |
| -rw-r--r-- | eval_error.c | 667 | |
| -rw-r--r-- | eval_intern.h | 348 | |
| -rw-r--r-- | eval_jump.c | 102 | |
| -rw-r--r-- | ext/-test-/RUBY_ALIGNOF/c.c | 15 | |
| -rw-r--r-- | ext/-test-/RUBY_ALIGNOF/cpp.cpp | 9 | |
| -rw-r--r-- | ext/-test-/RUBY_ALIGNOF/depend | 162 | |
| -rw-r--r-- | ext/-test-/RUBY_ALIGNOF/extconf.rb | 6 | |
| -rw-r--r-- | ext/-test-/abi/abi.c | 11 | |
| -rw-r--r-- | ext/-test-/abi/extconf.rb | 4 | |
| -rw-r--r-- | ext/-test-/add_suffix/bug.c | 22 | |
| -rw-r--r-- | ext/-test-/add_suffix/depend | 1 | |
| -rw-r--r-- | ext/-test-/add_suffix/extconf.rb | 4 | |
| -rw-r--r-- | ext/-test-/arith_seq/beg_len_step/beg_len_step.c | 19 | |
| -rw-r--r-- | ext/-test-/arith_seq/beg_len_step/depend | 161 | |
| -rw-r--r-- | ext/-test-/arith_seq/beg_len_step/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/arith_seq/extract/depend | 161 | |
| -rw-r--r-- | ext/-test-/arith_seq/extract/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/arith_seq/extract/extract.c | 27 | |
| -rw-r--r-- | ext/-test-/array/concat/depend | 162 | |
| -rw-r--r-- | ext/-test-/array/concat/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/array/concat/to_ary_concat.c | 38 | |
| -rw-r--r-- | ext/-test-/array/resize/depend | 161 | |
| -rw-r--r-- | ext/-test-/array/resize/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/array/resize/resize.c | 16 | |
| -rw-r--r-- | ext/-test-/auto_ext.rb | 11 | |
| -rw-r--r-- | ext/-test-/bignum/big2str.c | 53 | |
| -rw-r--r-- | ext/-test-/bignum/bigzero.c | 26 | |
| -rw-r--r-- | ext/-test-/bignum/depend | 1122 | |
| -rw-r--r-- | ext/-test-/bignum/div.c | 35 | |
| -rw-r--r-- | ext/-test-/bignum/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/bignum/init.c | 11 | |
| -rw-r--r-- | ext/-test-/bignum/intpack.c | 87 | |
| -rw-r--r-- | ext/-test-/bignum/mul.c | 65 | |
| -rw-r--r-- | ext/-test-/bignum/str2big.c | 38 | |
| -rw-r--r-- | ext/-test-/bug-14834/bug-14384.c | 39 | |
| -rw-r--r-- | ext/-test-/bug-14834/depend | 162 | |
| -rw-r--r-- | ext/-test-/bug-14834/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/bug-3571/bug.c | 6 | |
| -rw-r--r-- | ext/-test-/bug-3571/depend | 162 | |
| -rw-r--r-- | ext/-test-/bug-3571/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/bug-3662/bug.c | 16 | |
| -rw-r--r-- | ext/-test-/bug-3662/extconf.rb | 1 | |
| -rw-r--r-- | ext/-test-/bug-5832/bug.c | 14 | |
| -rw-r--r-- | ext/-test-/bug-5832/depend | 162 | |
| -rw-r--r-- | ext/-test-/bug-5832/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/bug_reporter/bug_reporter.c | 24 | |
| -rw-r--r-- | ext/-test-/bug_reporter/depend | 162 | |
| -rw-r--r-- | ext/-test-/bug_reporter/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/class/class2name.c | 14 | |
| -rw-r--r-- | ext/-test-/class/depend | 321 | |
| -rw-r--r-- | ext/-test-/class/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/class/init.c | 11 | |
| -rw-r--r-- | ext/-test-/cxxanyargs/cxxanyargs.cpp | 961 | |
| -rw-r--r-- | ext/-test-/cxxanyargs/depend | 13 | |
| -rw-r--r-- | ext/-test-/cxxanyargs/extconf.rb | 46 | |
| -rw-r--r-- | ext/-test-/cxxanyargs/failure.cpp | 13 | |
| -rw-r--r-- | ext/-test-/cxxanyargs/failurem1.cpp | 13 | |
| -rw-r--r-- | ext/-test-/debug/depend | 482 | |
| -rw-r--r-- | ext/-test-/debug/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/debug/init.c | 11 | |
| -rw-r--r-- | ext/-test-/debug/inspector.c | 32 | |
| -rw-r--r-- | ext/-test-/debug/profile_frames.c | 44 | |
| -rw-r--r-- | ext/-test-/dln/empty/depend | 162 | |
| -rw-r--r-- | ext/-test-/dln/empty/empty.c | 6 | |
| -rw-r--r-- | ext/-test-/dln/empty/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/econv/append.c | 15 | |
| -rw-r--r-- | ext/-test-/econv/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/econv/init.c | 11 | |
| -rw-r--r-- | ext/-test-/enumerator_kw/depend | 162 | |
| -rw-r--r-- | ext/-test-/enumerator_kw/enumerator_kw.c | 22 | |
| -rw-r--r-- | ext/-test-/enumerator_kw/extconf.rb | 1 | |
| -rw-r--r-- | ext/-test-/eval/eval.c | 13 | |
| -rw-r--r-- | ext/-test-/eval/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/exception/dataerror.c | 31 | |
| -rw-r--r-- | ext/-test-/exception/depend | 653 | |
| -rw-r--r-- | ext/-test-/exception/enc_raise.c | 15 | |
| -rw-r--r-- | ext/-test-/exception/ensured.c | 39 | |
| -rw-r--r-- | ext/-test-/exception/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/exception/init.c | 11 | |
| -rw-r--r-- | ext/-test-/fatal/depend | 162 | |
| -rw-r--r-- | ext/-test-/fatal/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/fatal/rb_fatal.c | 20 | |
| -rw-r--r-- | ext/-test-/file/depend | 506 | |
| -rw-r--r-- | ext/-test-/file/extconf.rb | 18 | |
| -rw-r--r-- | ext/-test-/file/fs.c | 111 | |
| -rw-r--r-- | ext/-test-/file/init.c | 11 | |
| -rw-r--r-- | ext/-test-/file/stat.c | 27 | |
| -rw-r--r-- | ext/-test-/float/depend | 326 | |
| -rw-r--r-- | ext/-test-/float/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/float/init.c | 11 | |
| -rw-r--r-- | ext/-test-/float/nextafter.c | 36 | |
| -rw-r--r-- | ext/-test-/funcall/depend | 162 | |
| -rw-r--r-- | ext/-test-/funcall/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/funcall/funcall.c | 72 | |
| -rw-r--r-- | ext/-test-/gvl/call_without_gvl/call_without_gvl.c | 78 | |
| -rw-r--r-- | ext/-test-/gvl/call_without_gvl/depend | 162 | |
| -rw-r--r-- | ext/-test-/gvl/call_without_gvl/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/hash/delete.c | 16 | |
| -rw-r--r-- | ext/-test-/hash/depend | 322 | |
| -rw-r--r-- | ext/-test-/hash/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/hash/init.c | 11 | |
| -rw-r--r-- | ext/-test-/integer/core_ext.c | 36 | |
| -rw-r--r-- | ext/-test-/integer/depend | 490 | |
| -rw-r--r-- | ext/-test-/integer/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/integer/init.c | 11 | |
| -rw-r--r-- | ext/-test-/integer/my_integer.c | 16 | |
| -rw-r--r-- | ext/-test-/iseq_load/depend | 162 | |
| -rw-r--r-- | ext/-test-/iseq_load/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/iseq_load/iseq_load.c | 21 | |
| -rw-r--r-- | ext/-test-/iter/break.c | 25 | |
| -rw-r--r-- | ext/-test-/iter/depend | 482 | |
| -rw-r--r-- | ext/-test-/iter/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/iter/init.c | 11 | |
| -rw-r--r-- | ext/-test-/iter/yield.c | 16 | |
| -rw-r--r-- | ext/-test-/load/dot.dot/depend | 162 | |
| -rw-r--r-- | ext/-test-/load/dot.dot/dot.dot.c | 3 | |
| -rw-r--r-- | ext/-test-/load/dot.dot/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/load/protect/depend | 162 | |
| -rw-r--r-- | ext/-test-/load/protect/extconf.rb | 1 | |
| -rw-r--r-- | ext/-test-/load/protect/protect.c | 19 | |
| -rw-r--r-- | ext/-test-/marshal/compat/depend | 162 | |
| -rw-r--r-- | ext/-test-/marshal/compat/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/marshal/compat/usrcompat.c | 32 | |
| -rw-r--r-- | ext/-test-/marshal/internal_ivar/depend | 162 | |
| -rw-r--r-- | ext/-test-/marshal/internal_ivar/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/marshal/internal_ivar/internal_ivar.c | 45 | |
| -rw-r--r-- | ext/-test-/marshal/usr/depend | 162 | |
| -rw-r--r-- | ext/-test-/marshal/usr/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/marshal/usr/usrmarshal.c | 50 | |
| -rw-r--r-- | ext/-test-/memory_status/depend | 162 | |
| -rw-r--r-- | ext/-test-/memory_status/extconf.rb | 12 | |
| -rw-r--r-- | ext/-test-/memory_status/memory_status.c | 80 | |
| -rw-r--r-- | ext/-test-/memory_view/depend | 163 | |
| -rw-r--r-- | ext/-test-/memory_view/extconf.rb | 5 | |
| -rw-r--r-- | ext/-test-/memory_view/memory_view.c | 450 | |
| -rw-r--r-- | ext/-test-/method/arity.c | 22 | |
| -rw-r--r-- | ext/-test-/method/depend | 322 | |
| -rw-r--r-- | ext/-test-/method/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/method/init.c | 11 | |
| -rw-r--r-- | ext/-test-/notimplement/bug.c | 18 | |
| -rw-r--r-- | ext/-test-/notimplement/depend | 162 | |
| -rw-r--r-- | ext/-test-/notimplement/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/num2int/depend | 162 | |
| -rw-r--r-- | ext/-test-/num2int/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/num2int/num2int.c | 136 | |
| -rw-r--r-- | ext/-test-/path_to_class/depend | 162 | |
| -rw-r--r-- | ext/-test-/path_to_class/extconf.rb | 7 | |
| -rw-r--r-- | ext/-test-/path_to_class/path_to_class.c | 15 | |
| -rw-r--r-- | ext/-test-/popen_deadlock/depend | 163 | |
| -rw-r--r-- | ext/-test-/popen_deadlock/extconf.rb | 6 | |
| -rw-r--r-- | ext/-test-/popen_deadlock/infinite_loop_dlsym.c | 50 | |
| -rw-r--r-- | ext/-test-/postponed_job/depend | 163 | |
| -rw-r--r-- | ext/-test-/postponed_job/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/postponed_job/postponed_job.c | 100 | |
| -rw-r--r-- | ext/-test-/printf/depend | 174 | |
| -rw-r--r-- | ext/-test-/printf/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/printf/printf.c | 109 | |
| -rw-r--r-- | ext/-test-/proc/depend | 482 | |
| -rw-r--r-- | ext/-test-/proc/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/proc/init.c | 11 | |
| -rw-r--r-- | ext/-test-/proc/receiver.c | 21 | |
| -rw-r--r-- | ext/-test-/proc/super.c | 27 | |
| -rw-r--r-- | ext/-test-/random/bad_version.c | 135 | |
| -rw-r--r-- | ext/-test-/random/depend | 482 | |
| -rw-r--r-- | ext/-test-/random/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/random/init.c | 11 | |
| -rw-r--r-- | ext/-test-/random/loop.c | 111 | |
| -rw-r--r-- | ext/-test-/rational/depend | 179 | |
| -rw-r--r-- | ext/-test-/rational/extconf.rb | 8 | |
| -rw-r--r-- | ext/-test-/rational/rat.c | 48 | |
| -rw-r--r-- | ext/-test-/rb_call_super_kw/depend | 162 | |
| -rw-r--r-- | ext/-test-/rb_call_super_kw/extconf.rb | 1 | |
| -rw-r--r-- | ext/-test-/rb_call_super_kw/rb_call_super_kw.c | 15 | |
| -rw-r--r-- | ext/-test-/recursion/depend | 162 | |
| -rw-r--r-- | ext/-test-/recursion/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/recursion/recursion.c | 28 | |
| -rw-r--r-- | ext/-test-/regexp/depend | 323 | |
| -rw-r--r-- | ext/-test-/regexp/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/regexp/init.c | 11 | |
| -rw-r--r-- | ext/-test-/regexp/parse_depth_limit.c | 23 | |
| -rw-r--r-- | ext/-test-/scan_args/depend | 162 | |
| -rw-r--r-- | ext/-test-/scan_args/extconf.rb | 1 | |
| -rw-r--r-- | ext/-test-/scan_args/scan_args.c | 305 | |
| -rw-r--r-- | ext/-test-/st/foreach/depend | 162 | |
| -rw-r--r-- | ext/-test-/st/foreach/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/st/foreach/foreach.c | 175 | |
| -rw-r--r-- | ext/-test-/st/numhash/depend | 162 | |
| -rw-r--r-- | ext/-test-/st/numhash/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/st/numhash/numhash.c | 137 | |
| -rw-r--r-- | ext/-test-/st/update/depend | 162 | |
| -rw-r--r-- | ext/-test-/st/update/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/st/update/update.c | 34 | |
| -rw-r--r-- | ext/-test-/string/capacity.c | 18 | |
| -rw-r--r-- | ext/-test-/string/coderange.c | 47 | |
| -rw-r--r-- | ext/-test-/string/cstr.c | 156 | |
| -rw-r--r-- | ext/-test-/string/depend | 2675 | |
| -rw-r--r-- | ext/-test-/string/ellipsize.c | 13 | |
| -rw-r--r-- | ext/-test-/string/enc_associate.c | 22 | |
| -rw-r--r-- | ext/-test-/string/enc_str_buf_cat.c | 28 | |
| -rw-r--r-- | ext/-test-/string/extconf.rb | 9 | |
| -rw-r--r-- | ext/-test-/string/fstring.c | 30 | |
| -rw-r--r-- | ext/-test-/string/init.c | 10 | |
| -rw-r--r-- | ext/-test-/string/modify.c | 22 | |
| -rw-r--r-- | ext/-test-/string/new.c | 21 | |
| -rw-r--r-- | ext/-test-/string/nofree.c | 13 | |
| -rw-r--r-- | ext/-test-/string/normalize.c | 17 | |
| -rw-r--r-- | ext/-test-/string/qsort.c | 61 | |
| -rw-r--r-- | ext/-test-/string/rb_interned_str.c | 14 | |
| -rw-r--r-- | ext/-test-/string/rb_str_dup.c | 35 | |
| -rw-r--r-- | ext/-test-/string/set_len.c | 12 | |
| -rw-r--r-- | ext/-test-/struct/depend | 642 | |
| -rw-r--r-- | ext/-test-/struct/duplicate.c | 24 | |
| -rw-r--r-- | ext/-test-/struct/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/struct/init.c | 11 | |
| -rw-r--r-- | ext/-test-/struct/len.c | 13 | |
| -rw-r--r-- | ext/-test-/struct/member.c | 18 | |
| -rw-r--r-- | ext/-test-/symbol/depend | 322 | |
| -rw-r--r-- | ext/-test-/symbol/extconf.rb | 4 | |
| -rw-r--r-- | ext/-test-/symbol/init.c | 39 | |
| -rw-r--r-- | ext/-test-/symbol/type.c | 78 | |
| -rw-r--r-- | ext/-test-/thread/instrumentation/depend | 164 | |
| -rw-r--r-- | ext/-test-/thread/instrumentation/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/thread/instrumentation/instrumentation.c | 141 | |
| -rw-r--r-- | ext/-test-/thread_fd/depend | 161 | |
| -rw-r--r-- | ext/-test-/thread_fd/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/thread_fd/thread_fd.c | 30 | |
| -rw-r--r-- | ext/-test-/time/depend | 487 | |
| -rw-r--r-- | ext/-test-/time/extconf.rb | 3 | |
| -rw-r--r-- | ext/-test-/time/init.c | 11 | |
| -rw-r--r-- | ext/-test-/time/leap_second.c | 15 | |
| -rw-r--r-- | ext/-test-/time/new.c | 34 | |
| -rw-r--r-- | ext/-test-/tracepoint/depend | 322 | |
| -rw-r--r-- | ext/-test-/tracepoint/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/tracepoint/gc_hook.c | 85 | |
| -rw-r--r-- | ext/-test-/tracepoint/tracepoint.c | 96 | |
| -rw-r--r-- | ext/-test-/typeddata/depend | 162 | |
| -rw-r--r-- | ext/-test-/typeddata/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/typeddata/typeddata.c | 44 | |
| -rw-r--r-- | ext/-test-/vm/at_exit.c | 44 | |
| -rw-r--r-- | ext/-test-/vm/depend | 162 | |
| -rw-r--r-- | ext/-test-/vm/extconf.rb | 1 | |
| -rw-r--r-- | ext/-test-/wait/depend | 174 | |
| -rw-r--r-- | ext/-test-/wait/extconf.rb | 2 | |
| -rw-r--r-- | ext/-test-/wait/wait.c | 39 | |
| -rw-r--r-- | ext/-test-/win32/console/attribute.c | 69 | |
| -rw-r--r-- | ext/-test-/win32/console/depend | 1 | |
| -rw-r--r-- | ext/-test-/win32/console/extconf.rb | 5 | |
| -rw-r--r-- | ext/-test-/win32/console/init.c | 11 | |
| -rw-r--r-- | ext/-test-/win32/dln/depend | 9 | |
| -rw-r--r-- | ext/-test-/win32/dln/dlntest.c | 17 | |
| -rw-r--r-- | ext/-test-/win32/dln/extconf.rb | 33 | |
| -rw-r--r-- | ext/-test-/win32/dln/libdlntest.c | 4 | |
| -rw-r--r-- | ext/-test-/win32/dln/libdlntest.def | 2 | |
| -rw-r--r-- | ext/-test-/win32/fd_setsize/depend | 1 | |
| -rw-r--r-- | ext/-test-/win32/fd_setsize/extconf.rb | 4 | |
| -rw-r--r-- | ext/-test-/win32/fd_setsize/fd_setsize.c | 55 | |
| -rw-r--r-- | ext/.document | 69 | |
| -rw-r--r-- | ext/Setup | 24 | |
| -rw-r--r-- | ext/Setup.atheos | 7 | |
| -rw-r--r-- | ext/Setup.emx | 33 | |
| -rw-r--r-- | ext/Setup.nt | 8 | |
| -rw-r--r-- | ext/bigdecimal/README | 60 | |
| -rw-r--r-- | ext/bigdecimal/bigdecimal.c | 7328 | |
| -rw-r--r-- | ext/bigdecimal/bigdecimal.gemspec | 38 | |
| -rw-r--r-- | ext/bigdecimal/bigdecimal.h | 221 | |
| -rw-r--r-- | ext/bigdecimal/bigdecimal_en.html | 792 | |
| -rw-r--r-- | ext/bigdecimal/bigdecimal_ja.html | 799 | |
| -rw-r--r-- | ext/bigdecimal/bits.h | 141 | |
| -rw-r--r-- | ext/bigdecimal/depend | 331 | |
| -rw-r--r-- | ext/bigdecimal/extconf.rb | 83 | |
| -rw-r--r-- | ext/bigdecimal/feature.h | 68 | |
| -rw-r--r-- | ext/bigdecimal/lib/bigdecimal.rb | 1 | |
| -rw-r--r-- | ext/bigdecimal/lib/bigdecimal/jacobian.rb | 23 | |
| -rw-r--r-- | ext/bigdecimal/lib/bigdecimal/ludcmp.rb | 1 | |
| -rw-r--r-- | ext/bigdecimal/lib/bigdecimal/math.rb | 163 | |
| -rw-r--r-- | ext/bigdecimal/lib/bigdecimal/newton.rb | 6 | |
| -rw-r--r-- | ext/bigdecimal/lib/bigdecimal/util.rb | 184 | |
| -rw-r--r-- | ext/bigdecimal/missing.c | 27 | |
| -rw-r--r-- | ext/bigdecimal/missing.h | 196 | |
| -rw-r--r-- | ext/bigdecimal/missing/dtoa.c | 3462 | |
| -rw-r--r-- | ext/bigdecimal/sample/linear.rb | 27 | |
| -rw-r--r-- | ext/bigdecimal/sample/nlsolve.rb | 24 | |
| -rw-r--r-- | ext/bigdecimal/sample/pi.rb | 1 | |
| -rw-r--r-- | ext/bigdecimal/static_assert.h | 54 | |
| -rw-r--r-- | ext/cgi/escape/depend | 174 | |
| -rw-r--r-- | ext/cgi/escape/escape.c | 466 | |
| -rw-r--r-- | ext/cgi/escape/extconf.rb | 3 | |
| -rw-r--r-- | ext/continuation/continuation.c | 5 | |
| -rw-r--r-- | ext/continuation/depend | 161 | |
| -rw-r--r-- | ext/continuation/extconf.rb | 1 | |
| -rw-r--r-- | ext/coverage/coverage.c | 591 | |
| -rw-r--r-- | ext/coverage/depend | 195 | |
| -rw-r--r-- | ext/coverage/extconf.rb | 2 | |
| -rw-r--r-- | ext/coverage/lib/coverage.rb | 14 | |
| -rw-r--r-- | ext/curses/curses.c | 2231 | |
| -rw-r--r-- | ext/curses/depend | 1 | |
| -rw-r--r-- | ext/curses/extconf.rb | 36 | |
| -rw-r--r-- | ext/curses/hello.rb | 30 | |
| -rw-r--r-- | ext/curses/mouse.rb | 53 | |
| -rw-r--r-- | ext/curses/rain.rb | 76 | |
| -rw-r--r-- | ext/curses/view.rb | 91 | |
| -rw-r--r-- | ext/curses/view2.rb | 149 | |
| -rw-r--r-- | ext/date/date.gemspec | 34 | |
| -rw-r--r-- | ext/date/date_core.c | 10088 | |
| -rw-r--r-- | ext/date/date_parse.c | 3083 | |
| -rw-r--r-- | ext/date/date_strftime.c | 638 | |
| -rw-r--r-- | ext/date/date_strptime.c | 700 | |
| -rw-r--r-- | ext/date/date_tmx.h | 56 | |
| -rw-r--r-- | ext/date/depend | 688 | |
| -rw-r--r-- | ext/date/extconf.rb | 12 | |
| -rw-r--r-- | ext/date/lib/date.rb | 70 | |
| -rw-r--r-- | ext/date/prereq.mk | 19 | |
| -rw-r--r-- | ext/date/update-abbr | 52 | |
| -rw-r--r-- | ext/date/zonetab.h | 1562 | |
| -rw-r--r-- | ext/date/zonetab.list | 327 | |
| -rw-r--r-- | ext/dbm/dbm.c | 747 | |
| -rw-r--r-- | ext/dbm/depend | 1 | |
| -rw-r--r-- | ext/dbm/extconf.rb | 57 | |
| -rw-r--r-- | ext/digest/bubblebabble/bubblebabble.c | 41 | |
| -rw-r--r-- | ext/digest/bubblebabble/depend | 166 | |
| -rw-r--r-- | ext/digest/bubblebabble/extconf.rb | 4 | |
| -rw-r--r-- | ext/digest/depend | 165 | |
| -rw-r--r-- | ext/digest/digest.c | 252 | |
| -rw-r--r-- | ext/digest/digest.gemspec | 44 | |
| -rw-r--r-- | ext/digest/digest.h | 46 | |
| -rw-r--r-- | ext/digest/digest_conf.rb | 17 | |
| -rw-r--r-- | ext/digest/extconf.rb | 3 | |
| -rw-r--r-- | ext/digest/lib/digest.rb | 71 | |
| -rw-r--r-- | ext/digest/lib/digest/hmac.rb | 281 | |
| -rw-r--r-- | ext/digest/lib/digest/loader.rb | 3 | |
| -rw-r--r-- | ext/digest/lib/digest/version.rb | 5 | |
| -rw-r--r-- | ext/digest/md5/depend | 337 | |
| -rw-r--r-- | ext/digest/md5/extconf.rb | 16 | |
| -rw-r--r-- | ext/digest/md5/md5.c | 14 | |
| -rw-r--r-- | ext/digest/md5/md5.h | 6 | |
| -rw-r--r-- | ext/digest/md5/md5cc.h | 19 | |
| -rw-r--r-- | ext/digest/md5/md5init.c | 39 | |
| -rw-r--r-- | ext/digest/md5/md5ossl.c | 9 | |
| -rw-r--r-- | ext/digest/md5/md5ossl.h | 13 | |
| -rw-r--r-- | ext/digest/rmd160/depend | 336 | |
| -rw-r--r-- | ext/digest/rmd160/extconf.rb | 17 | |
| -rw-r--r-- | ext/digest/rmd160/rmd160.c | 16 | |
| -rw-r--r-- | ext/digest/rmd160/rmd160.h | 6 | |
| -rw-r--r-- | ext/digest/rmd160/rmd160init.c | 39 | |
| -rw-r--r-- | ext/digest/rmd160/rmd160ossl.c | 8 | |
| -rw-r--r-- | ext/digest/rmd160/rmd160ossl.h | 19 | |
| -rw-r--r-- | ext/digest/sha1/depend | 337 | |
| -rw-r--r-- | ext/digest/sha1/extconf.rb | 15 | |
| -rw-r--r-- | ext/digest/sha1/sha1.c | 6 | |
| -rw-r--r-- | ext/digest/sha1/sha1.h | 6 | |
| -rw-r--r-- | ext/digest/sha1/sha1cc.h | 14 | |
| -rw-r--r-- | ext/digest/sha1/sha1init.c | 41 | |
| -rw-r--r-- | ext/digest/sha1/sha1ossl.c | 10 | |
| -rw-r--r-- | ext/digest/sha1/sha1ossl.h | 20 | |
| -rw-r--r-- | ext/digest/sha2/depend | 336 | |
| -rw-r--r-- | ext/digest/sha2/extconf.rb | 21 | |
| -rw-r--r-- | ext/digest/sha2/lib/sha2.rb | 88 | |
| -rw-r--r-- | ext/digest/sha2/lib/sha2/loader.rb | 3 | |
| -rw-r--r-- | ext/digest/sha2/sha2.c | 67 | |
| -rw-r--r-- | ext/digest/sha2/sha2.h | 30 | |
| -rw-r--r-- | ext/digest/sha2/sha2cc.h | 31 | |
| -rw-r--r-- | ext/digest/sha2/sha2init.c | 19 | |
| -rw-r--r-- | ext/digest/sha2/sha2ossl.c | 11 | |
| -rw-r--r-- | ext/digest/sha2/sha2ossl.h | 17 | |
| -rw-r--r-- | ext/dl/callback/depend | 15 | |
| -rw-r--r-- | ext/dl/callback/extconf.rb | 14 | |
| -rw-r--r-- | ext/dl/callback/mkcallback.rb | 238 | |
| -rw-r--r-- | ext/dl/cfunc.c | 632 | |
| -rw-r--r-- | ext/dl/cptr.c | 650 | |
| -rw-r--r-- | ext/dl/depend | 7 | |
| -rw-r--r-- | ext/dl/dl.c | 165 | |
| -rw-r--r-- | ext/dl/dl.h | 224 | |
| -rw-r--r-- | ext/dl/extconf.rb | 29 | |
| -rw-r--r-- | ext/dl/handle.c | 377 | |
| -rw-r--r-- | ext/dl/lib/dl.rb | 12 | |
| -rw-r--r-- | ext/dl/lib/dl/callback.rb | 96 | |
| -rw-r--r-- | ext/dl/lib/dl/cparser.rb | 109 | |
| -rw-r--r-- | ext/dl/lib/dl/func.rb | 187 | |
| -rw-r--r-- | ext/dl/lib/dl/import.rb | 239 | |
| -rw-r--r-- | ext/dl/lib/dl/pack.rb | 128 | |
| -rw-r--r-- | ext/dl/lib/dl/stack.rb | 116 | |
| -rw-r--r-- | ext/dl/lib/dl/struct.rb | 213 | |
| -rw-r--r-- | ext/dl/lib/dl/types.rb | 40 | |
| -rw-r--r-- | ext/dl/lib/dl/value.rb | 112 | |
| -rw-r--r-- | ext/dl/win32/extconf.rb | 3 | |
| -rw-r--r-- | ext/dl/win32/lib/Win32API.rb | 30 | |
| -rw-r--r-- | ext/dl/win32/lib/win32/registry.rb | 845 | |
| -rw-r--r-- | ext/dl/win32/lib/win32/resolv.rb | 379 | |
| -rw-r--r-- | ext/dl/win32/lib/win32/sspi.rb | 330 | |
| -rw-r--r-- | ext/erb/escape/escape.c | 95 | |
| -rw-r--r-- | ext/erb/escape/extconf.rb | 7 | |
| -rw-r--r-- | ext/etc/depend | 182 | |
| -rw-r--r-- | ext/etc/etc.c | 925 | |
| -rw-r--r-- | ext/etc/etc.gemspec | 43 | |
| -rw-r--r-- | ext/etc/extconf.rb | 75 | |
| -rw-r--r-- | ext/etc/mkconstants.rb | 340 | |
| -rwxr-xr-x | ext/extmk.rb | 654 | |
| -rw-r--r-- | ext/fcntl/depend | 163 | |
| -rw-r--r-- | ext/fcntl/extconf.rb | 1 | |
| -rw-r--r-- | ext/fcntl/fcntl.c | 221 | |
| -rw-r--r-- | ext/fcntl/fcntl.gemspec | 21 | |
| -rw-r--r-- | ext/fiber/extconf.rb | 3 | |
| -rw-r--r-- | ext/fiber/fiber.c | 8 | |
| -rw-r--r-- | ext/fiddle/closure.c | 329 | |
| -rw-r--r-- | ext/fiddle/closure.h | 2 | |
| -rw-r--r-- | ext/fiddle/conversions.c | 264 | |
| -rw-r--r-- | ext/fiddle/conversions.h | 26 | |
| -rw-r--r-- | ext/fiddle/depend | 1396 | |
| -rw-r--r-- | ext/fiddle/extconf.rb | 245 | |
| -rw-r--r-- | ext/fiddle/fiddle.c | 679 | |
| -rw-r--r-- | ext/fiddle/fiddle.gemspec | 59 | |
| -rw-r--r-- | ext/fiddle/fiddle.h | 200 | |
| -rw-r--r-- | ext/fiddle/function.c | 469 | |
| -rw-r--r-- | ext/fiddle/function.h | 2 | |
| -rw-r--r-- | ext/fiddle/handle.c | 586 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle.rb | 84 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/closure.rb | 57 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/cparser.rb | 264 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/function.rb | 24 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/import.rb | 320 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/pack.rb | 137 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/struct.rb | 539 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/types.rb | 73 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/value.rb | 122 | |
| -rw-r--r-- | ext/fiddle/lib/fiddle/version.rb | 3 | |
| -rw-r--r-- | ext/fiddle/memory_view.c | 321 | |
| -rw-r--r-- | ext/fiddle/pinned.c | 123 | |
| -rw-r--r-- | ext/fiddle/pointer.c | 853 | |
| -rw-r--r-- | ext/fiddle/win32/fficonfig.h | 29 | |
| -rw-r--r-- | ext/fiddle/win32/libffi-3.2.1-mswin.patch | 191 | |
| -rwxr-xr-x | ext/fiddle/win32/libffi-config.rb | 48 | |
| -rw-r--r-- | ext/fiddle/win32/libffi.mk.tmpl | 96 | |
| -rw-r--r-- | ext/gdbm/README | 1 | |
| -rw-r--r-- | ext/gdbm/depend | 1 | |
| -rw-r--r-- | ext/gdbm/extconf.rb | 7 | |
| -rw-r--r-- | ext/gdbm/gdbm.c | 1255 | |
| -rw-r--r-- | ext/iconv/charset_alias.rb | 104 | |
| -rw-r--r-- | ext/iconv/depend | 2 | |
| -rw-r--r-- | ext/iconv/extconf.rb | 54 | |
| -rw-r--r-- | ext/iconv/iconv.c | 1229 | |
| -rw-r--r-- | ext/iconv/mkwrapper.rb | 53 | |
| -rwxr-xr-x | ext/io/console/buildgem.sh | 5 | |
| -rw-r--r-- | ext/io/console/console.c | 1383 | |
| -rw-r--r-- | ext/io/console/depend | 197 | |
| -rw-r--r-- | ext/io/console/extconf.rb | 34 | |
| -rw-r--r-- | ext/io/console/io-console.gemspec | 41 | |
| -rw-r--r-- | ext/io/console/lib/console/size.rb | 23 | |
| -rw-r--r-- | ext/io/console/win32_vk.chksum | 1 | |
| -rw-r--r-- | ext/io/console/win32_vk.inc | 1390 | |
| -rw-r--r-- | ext/io/console/win32_vk.list | 166 | |
| -rw-r--r-- | ext/io/nonblock/depend | 175 | |
| -rw-r--r-- | ext/io/nonblock/extconf.rb | 1 | |
| -rw-r--r-- | ext/io/nonblock/io-nonblock.gemspec | 25 | |
| -rw-r--r-- | ext/io/nonblock/nonblock.c | 113 | |
| -rw-r--r-- | ext/io/wait/depend | 176 | |
| -rw-r--r-- | ext/io/wait/extconf.rb | 32 | |
| -rw-r--r-- | ext/io/wait/io-wait.gemspec | 38 | |
| -rw-r--r-- | ext/io/wait/wait.c | 370 | |
| -rw-r--r-- | ext/json/VERSION | 1 | |
| -rw-r--r-- | ext/json/depend | 2 | |
| -rw-r--r-- | ext/json/extconf.rb | 2 | |
| -rw-r--r-- | ext/json/fbuffer/fbuffer.h | 187 | |
| -rw-r--r-- | ext/json/generator/depend | 183 | |
| -rw-r--r-- | ext/json/generator/extconf.rb | 2 | |
| -rw-r--r-- | ext/json/generator/generator.c | 1054 | |
| -rw-r--r-- | ext/json/generator/generator.h | 147 | |
| -rw-r--r-- | ext/json/json.gemspec | 67 | |
| -rw-r--r-- | ext/json/lib/json.rb | 573 | |
| -rw-r--r-- | ext/json/lib/json/add/bigdecimal.rb | 29 | |
| -rw-r--r-- | ext/json/lib/json/add/complex.rb | 28 | |
| -rw-r--r-- | ext/json/lib/json/add/core.rb | 156 | |
| -rw-r--r-- | ext/json/lib/json/add/date.rb | 34 | |
| -rw-r--r-- | ext/json/lib/json/add/date_time.rb | 50 | |
| -rw-r--r-- | ext/json/lib/json/add/exception.rb | 31 | |
| -rw-r--r-- | ext/json/lib/json/add/ostruct.rb | 31 | |
| -rw-r--r-- | ext/json/lib/json/add/rails.rb | 58 | |
| -rw-r--r-- | ext/json/lib/json/add/range.rb | 29 | |
| -rw-r--r-- | ext/json/lib/json/add/rational.rb | 27 | |
| -rw-r--r-- | ext/json/lib/json/add/regexp.rb | 30 | |
| -rw-r--r-- | ext/json/lib/json/add/set.rb | 29 | |
| -rw-r--r-- | ext/json/lib/json/add/struct.rb | 30 | |
| -rw-r--r-- | ext/json/lib/json/add/symbol.rb | 25 | |
| -rw-r--r-- | ext/json/lib/json/add/time.rb | 38 | |
| -rw-r--r-- | ext/json/lib/json/common.rb | 604 | |
| -rw-r--r-- | ext/json/lib/json/editor.rb | 1371 | |
| -rw-r--r-- | ext/json/lib/json/ext.rb | 4 | |
| -rw-r--r-- | ext/json/lib/json/generic_object.rb | 71 | |
| -rw-r--r-- | ext/json/lib/json/version.rb | 3 | |
| -rw-r--r-- | ext/json/parser/depend | 181 | |
| -rw-r--r-- | ext/json/parser/extconf.rb | 30 | |
| -rw-r--r-- | ext/json/parser/parser.c | 4728 | |
| -rw-r--r-- | ext/json/parser/parser.h | 59 | |
| -rw-r--r-- | ext/json/parser/parser.rl | 598 | |
| -rw-r--r-- | ext/json/parser/prereq.mk | 5 | |
| -rw-r--r-- | ext/mathn/complex/complex.c | 7 | |
| -rw-r--r-- | ext/mathn/complex/extconf.rb | 3 | |
| -rw-r--r-- | ext/mathn/rational/extconf.rb | 3 | |
| -rw-r--r-- | ext/mathn/rational/rational.c | 7 | |
| -rw-r--r-- | ext/monitor/depend | 161 | |
| -rw-r--r-- | ext/monitor/extconf.rb | 2 | |
| -rw-r--r-- | ext/monitor/lib/monitor.rb | 284 | |
| -rw-r--r-- | ext/monitor/monitor.c | 225 | |
| -rw-r--r-- | ext/nkf/depend | 183 | |
| -rw-r--r-- | ext/nkf/extconf.rb | 1 | |
| -rw-r--r-- | ext/nkf/lib/kconv.rb | 11 | |
| -rw-r--r-- | ext/nkf/nkf-utf8/config.h | 2 | |
| -rw-r--r-- | ext/nkf/nkf-utf8/nkf.c | 816 | |
| -rw-r--r-- | ext/nkf/nkf-utf8/nkf.h | 29 | |
| -rw-r--r-- | ext/nkf/nkf-utf8/utf8tbl.c | 5888 | |
| -rw-r--r-- | ext/nkf/nkf-utf8/utf8tbl.h | 15 | |
| -rw-r--r-- | ext/nkf/nkf.c | 121 | |
| -rw-r--r-- | ext/nkf/nkf.gemspec | 24 | |
| -rw-r--r-- | ext/objspace/depend | 582 | |
| -rw-r--r-- | ext/objspace/extconf.rb | 2 | |
| -rw-r--r-- | ext/objspace/lib/objspace.rb | 142 | |
| -rw-r--r-- | ext/objspace/lib/objspace/trace.rb | 45 | |
| -rw-r--r-- | ext/objspace/object_tracing.c | 586 | |
| -rw-r--r-- | ext/objspace/objspace.c | 1208 | |
| -rw-r--r-- | ext/objspace/objspace.h | 20 | |
| -rw-r--r-- | ext/objspace/objspace_dump.c | 833 | |
| -rw-r--r-- | ext/openssl/History.md | 676 | |
| -rw-r--r-- | ext/openssl/depend | 6215 | |
| -rw-r--r-- | ext/openssl/extconf.rb | 252 | |
| -rw-r--r-- | ext/openssl/lib/openssl.rb | 36 | |
| -rw-r--r-- | ext/openssl/lib/openssl/bn.rb | 49 | |
| -rw-r--r-- | ext/openssl/lib/openssl/buffering.rb | 362 | |
| -rw-r--r-- | ext/openssl/lib/openssl/cipher.rb | 70 | |
| -rw-r--r-- | ext/openssl/lib/openssl/config.rb | 316 | |
| -rw-r--r-- | ext/openssl/lib/openssl/digest.rb | 102 | |
| -rw-r--r-- | ext/openssl/lib/openssl/hmac.rb | 78 | |
| -rw-r--r-- | ext/openssl/lib/openssl/marshal.rb | 30 | |
| -rw-r--r-- | ext/openssl/lib/openssl/pkcs5.rb | 22 | |
| -rw-r--r-- | ext/openssl/lib/openssl/pkey.rb | 471 | |
| -rw-r--r-- | ext/openssl/lib/openssl/ssl-internal.rb | 177 | |
| -rw-r--r-- | ext/openssl/lib/openssl/ssl.rb | 548 | |
| -rw-r--r-- | ext/openssl/lib/openssl/version.rb | 5 | |
| -rw-r--r-- | ext/openssl/lib/openssl/x509-internal.rb | 152 | |
| -rw-r--r-- | ext/openssl/lib/openssl/x509.rb | 392 | |
| -rw-r--r-- | ext/openssl/openssl.gemspec | 21 | |
| -rw-r--r-- | ext/openssl/openssl_missing.c | 338 | |
| -rw-r--r-- | ext/openssl/openssl_missing.h | 254 | |
| -rw-r--r-- | ext/openssl/ossl.c | 1261 | |
| -rw-r--r-- | ext/openssl/ossl.h | 194 | |
| -rw-r--r-- | ext/openssl/ossl_asn1.c | 1577 | |
| -rw-r--r-- | ext/openssl/ossl_asn1.h | 15 | |
| -rw-r--r-- | ext/openssl/ossl_bio.c | 74 | |
| -rw-r--r-- | ext/openssl/ossl_bio.h | 9 | |
| -rw-r--r-- | ext/openssl/ossl_bn.c | 982 | |
| -rw-r--r-- | ext/openssl/ossl_bn.h | 11 | |
| -rw-r--r-- | ext/openssl/ossl_cipher.c | 756 | |
| -rw-r--r-- | ext/openssl/ossl_cipher.h | 6 | |
| -rw-r--r-- | ext/openssl/ossl_config.c | 462 | |
| -rw-r--r-- | ext/openssl/ossl_config.h | 16 | |
| -rw-r--r-- | ext/openssl/ossl_digest.c | 262 | |
| -rw-r--r-- | ext/openssl/ossl_digest.h | 6 | |
| -rw-r--r-- | ext/openssl/ossl_engine.c | 383 | |
| -rw-r--r-- | ext/openssl/ossl_engine.h | 3 | |
| -rw-r--r-- | ext/openssl/ossl_hmac.c | 292 | |
| -rw-r--r-- | ext/openssl/ossl_hmac.h | 3 | |
| -rw-r--r-- | ext/openssl/ossl_kdf.c | 311 | |
| -rw-r--r-- | ext/openssl/ossl_kdf.h | 6 | |
| -rw-r--r-- | ext/openssl/ossl_ns_spki.c | 218 | |
| -rw-r--r-- | ext/openssl/ossl_ns_spki.h | 4 | |
| -rw-r--r-- | ext/openssl/ossl_ocsp.c | 1588 | |
| -rw-r--r-- | ext/openssl/ossl_ocsp.h | 11 | |
| -rw-r--r-- | ext/openssl/ossl_pkcs12.c | 159 | |
| -rw-r--r-- | ext/openssl/ossl_pkcs12.h | 4 | |
| -rw-r--r-- | ext/openssl/ossl_pkcs5.c | 98 | |
| -rw-r--r-- | ext/openssl/ossl_pkcs5.h | 6 | |
| -rw-r--r-- | ext/openssl/ossl_pkcs7.c | 296 | |
| -rw-r--r-- | ext/openssl/ossl_pkcs7.h | 20 | |
| -rw-r--r-- | ext/openssl/ossl_pkey.c | 1584 | |
| -rw-r--r-- | ext/openssl/ossl_pkey.h | 183 | |
| -rw-r--r-- | ext/openssl/ossl_pkey_dh.c | 606 | |
| -rw-r--r-- | ext/openssl/ossl_pkey_dsa.c | 528 | |
| -rw-r--r-- | ext/openssl/ossl_pkey_ec.c | 1610 | |
| -rw-r--r-- | ext/openssl/ossl_pkey_rsa.c | 812 | |
| -rw-r--r-- | ext/openssl/ossl_rand.c | 142 | |
| -rw-r--r-- | ext/openssl/ossl_rand.h | 4 | |
| -rw-r--r-- | ext/openssl/ossl_ssl.c | 2832 | |
| -rw-r--r-- | ext/openssl/ossl_ssl.h | 24 | |
| -rw-r--r-- | ext/openssl/ossl_ssl_session.c | 297 | |
| -rw-r--r-- | ext/openssl/ossl_ts.c | 1539 | |
| -rw-r--r-- | ext/openssl/ossl_ts.h | 16 | |
| -rw-r--r-- | ext/openssl/ossl_version.h | 16 | |
| -rw-r--r-- | ext/openssl/ossl_x509.c | 180 | |
| -rw-r--r-- | ext/openssl/ossl_x509.h | 29 | |
| -rw-r--r-- | ext/openssl/ossl_x509attr.c | 181 | |
| -rw-r--r-- | ext/openssl/ossl_x509cert.c | 494 | |
| -rw-r--r-- | ext/openssl/ossl_x509crl.c | 210 | |
| -rw-r--r-- | ext/openssl/ossl_x509ext.c | 225 | |
| -rw-r--r-- | ext/openssl/ossl_x509name.c | 362 | |
| -rw-r--r-- | ext/openssl/ossl_x509req.c | 180 | |
| -rw-r--r-- | ext/openssl/ossl_x509revoked.c | 133 | |
| -rw-r--r-- | ext/openssl/ossl_x509store.c | 764 | |
| -rw-r--r-- | ext/openssl/ruby_missing.h | 41 | |
| -rw-r--r-- | ext/pathname/depend | 174 | |
| -rw-r--r-- | ext/pathname/extconf.rb | 2 | |
| -rw-r--r-- | ext/pathname/lib/pathname.rb | 245 | |
| -rw-r--r-- | ext/pathname/pathname.c | 863 | |
| -rw-r--r-- | ext/pathname/pathname.gemspec | 25 | |
| -rw-r--r-- | ext/psych/.gitignore | 1 | |
| -rw-r--r-- | ext/psych/depend | 901 | |
| -rw-r--r-- | ext/psych/emitter.c | 517 | |
| -rw-r--r-- | ext/psych/emitter.h | 8 | |
| -rw-r--r-- | ext/psych/extconf.rb | 53 | |
| -rw-r--r-- | ext/psych/lib/psych.rb | 673 | |
| -rw-r--r-- | ext/psych/lib/psych/class_loader.rb | 104 | |
| -rw-r--r-- | ext/psych/lib/psych/coder.rb | 25 | |
| -rw-r--r-- | ext/psych/lib/psych/core_ext.rb | 28 | |
| -rw-r--r-- | ext/psych/lib/psych/deprecated.rb | 82 | |
| -rw-r--r-- | ext/psych/lib/psych/exception.rb | 28 | |
| -rw-r--r-- | ext/psych/lib/psych/handler.rb | 38 | |
| -rw-r--r-- | ext/psych/lib/psych/handlers/document_stream.rb | 23 | |
| -rw-r--r-- | ext/psych/lib/psych/handlers/recorder.rb | 40 | |
| -rw-r--r-- | ext/psych/lib/psych/json.rb | 6 | |
| -rw-r--r-- | ext/psych/lib/psych/json/ruby_events.rb | 20 | |
| -rw-r--r-- | ext/psych/lib/psych/json/stream.rb | 35 | |
| -rw-r--r-- | ext/psych/lib/psych/json/tree_builder.rb | 27 | |
| -rw-r--r-- | ext/psych/lib/psych/json/yaml_events.rb | 30 | |
| -rw-r--r-- | ext/psych/lib/psych/nodes.rb | 17 | |
| -rw-r--r-- | ext/psych/lib/psych/nodes/alias.rb | 3 | |
| -rw-r--r-- | ext/psych/lib/psych/nodes/document.rb | 3 | |
| -rw-r--r-- | ext/psych/lib/psych/nodes/mapping.rb | 3 | |
| -rw-r--r-- | ext/psych/lib/psych/nodes/node.rb | 41 | |
| -rw-r--r-- | ext/psych/lib/psych/nodes/scalar.rb | 5 | |
| -rw-r--r-- | ext/psych/lib/psych/nodes/sequence.rb | 5 | |
| -rw-r--r-- | ext/psych/lib/psych/nodes/stream.rb | 3 | |
| -rw-r--r-- | ext/psych/lib/psych/omap.rb | 1 | |
| -rw-r--r-- | ext/psych/lib/psych/parser.rb | 21 | |
| -rw-r--r-- | ext/psych/lib/psych/scalar_scanner.rb | 127 | |
| -rw-r--r-- | ext/psych/lib/psych/set.rb | 1 | |
| -rw-r--r-- | ext/psych/lib/psych/stream.rb | 21 | |
| -rw-r--r-- | ext/psych/lib/psych/streaming.rb | 28 | |
| -rw-r--r-- | ext/psych/lib/psych/syntax_error.rb | 22 | |
| -rw-r--r-- | ext/psych/lib/psych/tree_builder.rb | 55 | |
| -rw-r--r-- | ext/psych/lib/psych/versions.rb | 10 | |
| -rw-r--r-- | ext/psych/lib/psych/visitors.rb | 12 | |
| -rw-r--r-- | ext/psych/lib/psych/visitors/depth_first.rb | 27 | |
| -rw-r--r-- | ext/psych/lib/psych/visitors/emitter.rb | 16 | |
| -rw-r--r-- | ext/psych/lib/psych/visitors/json_tree.rb | 21 | |
| -rw-r--r-- | ext/psych/lib/psych/visitors/to_ruby.rb | 369 | |
| -rw-r--r-- | ext/psych/lib/psych/visitors/visitor.rb | 39 | |
| -rw-r--r-- | ext/psych/lib/psych/visitors/yaml_tree.rb | 423 | |
| -rw-r--r-- | ext/psych/lib/psych/y.rb | 10 | |
| -rw-r--r-- | ext/psych/parser.c | 349 | |
| -rw-r--r-- | ext/psych/parser.h | 6 | |
| -rw-r--r-- | ext/psych/psych.c | 11 | |
| -rw-r--r-- | ext/psych/psych.gemspec | 66 | |
| -rw-r--r-- | ext/psych/psych.h | 11 | |
| -rw-r--r-- | ext/psych/psych_emitter.c | 555 | |
| -rw-r--r-- | ext/psych/psych_emitter.h | 8 | |
| -rw-r--r-- | ext/psych/psych_parser.c | 565 | |
| -rw-r--r-- | ext/psych/psych_parser.h | 6 | |
| -rw-r--r-- | ext/psych/psych_to_ruby.c | 39 | |
| -rw-r--r-- | ext/psych/psych_to_ruby.h (renamed from ext/psych/to_ruby.h) | 0 | |
| -rw-r--r-- | ext/psych/psych_yaml_tree.c | 12 | |
| -rw-r--r-- | ext/psych/psych_yaml_tree.h (renamed from ext/psych/yaml_tree.h) | 0 | |
| -rw-r--r-- | ext/psych/to_ruby.c | 41 | |
| -rw-r--r-- | ext/psych/yaml_tree.c | 24 | |
| -rw-r--r-- | ext/pty/depend | 187 | |
| -rw-r--r-- | ext/pty/extconf.rb | 12 | |
| -rw-r--r-- | ext/pty/lib/expect.rb | 46 | |
| -rw-r--r-- | ext/pty/pty.c | 621 | |
| -rw-r--r-- | ext/racc/cparse/README | 3 | |
| -rw-r--r-- | ext/racc/cparse/cparse.c | 156 | |
| -rw-r--r-- | ext/racc/cparse/depend | 163 | |
| -rw-r--r-- | ext/racc/cparse/extconf.rb | 8 | |
| -rw-r--r-- | ext/rbconfig/sizeof/depend | 335 | |
| -rw-r--r-- | ext/rbconfig/sizeof/extconf.rb | 36 | |
| -rw-r--r-- | ext/readline/.gitignore | 1 | |
| -rw-r--r-- | ext/readline/README.ja | 401 | |
| -rw-r--r-- | ext/readline/depend | 176 | |
| -rw-r--r-- | ext/readline/depend-gem | 4 | |
| -rw-r--r-- | ext/readline/extconf.rb | 124 | |
| -rw-r--r-- | ext/readline/readline-ext.gemspec | 22 | |
| -rw-r--r-- | ext/readline/readline.c | 1286 | |
| -rw-r--r-- | ext/ripper/README | 2 | |
| -rw-r--r-- | ext/ripper/depend | 263 | |
| -rw-r--r-- | ext/ripper/eventids2.c | 537 | |
| -rw-r--r-- | ext/ripper/extconf.rb | 15 | |
| -rw-r--r-- | ext/ripper/lib/ripper.rb | 70 | |
| -rw-r--r-- | ext/ripper/lib/ripper/core.rb | 32 | |
| -rw-r--r-- | ext/ripper/lib/ripper/filter.rb | 32 | |
| -rw-r--r-- | ext/ripper/lib/ripper/lexer.rb | 272 | |
| -rw-r--r-- | ext/ripper/lib/ripper/sexp.rb | 164 | |
| -rw-r--r-- | ext/ripper/tools/dsl.rb | 88 | |
| -rw-r--r--[-rwxr-xr-x] | ext/ripper/tools/generate-param-macros.rb | 1 | |
| -rw-r--r--[-rwxr-xr-x] | ext/ripper/tools/generate.rb | 57 | |
| -rw-r--r--[-rwxr-xr-x] | ext/ripper/tools/preproc.rb | 56 | |
| -rw-r--r--[-rwxr-xr-x] | ext/ripper/tools/strip.rb | 8 | |
| -rw-r--r-- | ext/rubyvm/depend | 2 | |
| -rw-r--r-- | ext/rubyvm/extconf.rb | 1 | |
| -rw-r--r-- | ext/rubyvm/lib/forwardable/impl.rb | 16 | |
| -rw-r--r-- | ext/sdbm/_sdbm.c | 924 | |
| -rw-r--r-- | ext/sdbm/depend | 2 | |
| -rw-r--r-- | ext/sdbm/extconf.rb | 3 | |
| -rw-r--r-- | ext/sdbm/init.c | 713 | |
| -rw-r--r-- | ext/sdbm/sdbm.h | 86 | |
| -rw-r--r-- | ext/socket/.document | 23 | |
| -rw-r--r-- | ext/socket/addrinfo.h | 36 | |
| -rw-r--r-- | ext/socket/ancdata.c | 661 | |
| -rw-r--r-- | ext/socket/basicsocket.c | 317 | |
| -rw-r--r-- | ext/socket/constants.c | 11 | |
| -rw-r--r-- | ext/socket/depend | 2909 | |
| -rw-r--r-- | ext/socket/extconf.rb | 746 | |
| -rw-r--r-- | ext/socket/getaddrinfo.c | 915 | |
| -rw-r--r-- | ext/socket/getnameinfo.c | 263 | |
| -rw-r--r-- | ext/socket/ifaddr.c | 478 | |
| -rw-r--r-- | ext/socket/init.c | 760 | |
| -rw-r--r-- | ext/socket/ipsocket.c | 275 | |
| -rw-r--r-- | ext/socket/lib/socket.rb | 773 | |
| -rw-r--r-- | ext/socket/mkconstants.rb | 920 | |
| -rw-r--r-- | ext/socket/option.c | 906 | |
| -rw-r--r-- | ext/socket/raddrinfo.c | 1082 | |
| -rw-r--r-- | ext/socket/rubysocket.h | 370 | |
| -rw-r--r-- | ext/socket/socket.c | 1457 | |
| -rw-r--r-- | ext/socket/sockport.h | 86 | |
| -rw-r--r-- | ext/socket/sockssocket.c | 40 | |
| -rw-r--r-- | ext/socket/tcpserver.c | 119 | |
| -rw-r--r-- | ext/socket/tcpsocket.c | 72 | |
| -rw-r--r-- | ext/socket/udpsocket.c | 228 | |
| -rw-r--r-- | ext/socket/unixserver.c | 89 | |
| -rw-r--r-- | ext/socket/unixsocket.c | 281 | |
| -rw-r--r-- | ext/stringio/README | 18 | |
| -rw-r--r-- | ext/stringio/README.md | 10 | |
| -rw-r--r-- | ext/stringio/depend | 178 | |
| -rw-r--r-- | ext/stringio/extconf.rb | 2 | |
| -rw-r--r-- | ext/stringio/stringio.c | 1252 | |
| -rw-r--r-- | ext/stringio/stringio.gemspec | 38 | |
| -rw-r--r-- | ext/strscan/depend | 178 | |
| -rw-r--r-- | ext/strscan/extconf.rb | 10 | |
| -rw-r--r-- | ext/strscan/strscan.c | 754 | |
| -rw-r--r-- | ext/strscan/strscan.gemspec | 41 | |
| -rw-r--r-- | ext/syck/bytecode.c | 1165 | |
| -rw-r--r-- | ext/syck/depend | 12 | |
| -rw-r--r-- | ext/syck/emitter.c | 1247 | |
| -rw-r--r-- | ext/syck/extconf.rb | 5 | |
| -rw-r--r-- | ext/syck/gram.c | 1894 | |
| -rw-r--r-- | ext/syck/gram.h | 79 | |
| -rw-r--r-- | ext/syck/handler.c | 173 | |
| -rw-r--r-- | ext/syck/implicit.c | 2990 | |
| -rw-r--r-- | ext/syck/lib/syck.rb | 447 | |
| -rw-r--r-- | ext/syck/lib/syck/baseemitter.rb | 242 | |
| -rw-r--r-- | ext/syck/lib/syck/basenode.rb | 222 | |
| -rw-r--r-- | ext/syck/lib/syck/constants.rb | 45 | |
| -rw-r--r-- | ext/syck/lib/syck/encoding.rb | 35 | |
| -rw-r--r-- | ext/syck/lib/syck/error.rb | 34 | |
| -rw-r--r-- | ext/syck/lib/syck/loader.rb | 14 | |
| -rw-r--r-- | ext/syck/lib/syck/rubytypes.rb | 464 | |
| -rw-r--r-- | ext/syck/lib/syck/stream.rb | 41 | |
| -rw-r--r-- | ext/syck/lib/syck/stringio.rb | 85 | |
| -rw-r--r-- | ext/syck/lib/syck/syck.rb | 16 | |
| -rw-r--r-- | ext/syck/lib/syck/tag.rb | 95 | |
| -rw-r--r-- | ext/syck/lib/syck/types.rb | 192 | |
| -rw-r--r-- | ext/syck/lib/syck/yamlnode.rb | 54 | |
| -rw-r--r-- | ext/syck/lib/syck/ypath.rb | 54 | |
| -rw-r--r-- | ext/syck/lib/yaml/syck.rb | 14 | |
| -rw-r--r-- | ext/syck/node.c | 407 | |
| -rw-r--r-- | ext/syck/rubyext.c | 2326 | |
| -rw-r--r-- | ext/syck/syck.c | 524 | |
| -rw-r--r-- | ext/syck/syck.h | 453 | |
| -rw-r--r-- | ext/syck/token.c | 2724 | |
| -rw-r--r-- | ext/syck/yaml2byte.c | 259 | |
| -rw-r--r-- | ext/syck/yamlbyte.h | 171 | |
| -rw-r--r-- | ext/syslog/depend | 164 | |
| -rw-r--r-- | ext/syslog/extconf.rb | 3 | |
| -rw-r--r-- | ext/syslog/lib/syslog/logger.rb | 209 | |
| -rw-r--r-- | ext/syslog/syslog.c | 385 | |
| -rw-r--r-- | ext/syslog/syslog.gemspec | 23 | |
| -rw-r--r-- | ext/syslog/syslog.txt | 4 | |
| -rw-r--r-- | ext/tk/ChangeLog.tkextlib | 949 | |
| -rw-r--r-- | ext/tk/MANUAL_tcltklib.eng | 473 | |
| -rw-r--r-- | ext/tk/MANUAL_tcltklib.eucj | 584 | |
| -rw-r--r-- | ext/tk/README.1st | 19 | |
| -rw-r--r-- | ext/tk/README.ActiveTcl | 62 | |
| -rw-r--r-- | ext/tk/README.fork | 34 | |
| -rw-r--r-- | ext/tk/README.macosx-aqua | 67 | |
| -rw-r--r-- | ext/tk/README.tcltklib | 127 | |
| -rw-r--r-- | ext/tk/config_list.in | 37 | |
| -rw-r--r-- | ext/tk/depend | 2 | |
| -rw-r--r-- | ext/tk/extconf.rb | 1583 | |
| -rw-r--r-- | ext/tk/lib/README | 30 | |
| -rw-r--r-- | ext/tk/lib/multi-tk.rb | 3740 | |
| -rw-r--r-- | ext/tk/lib/remote-tk.rb | 530 | |
| -rw-r--r-- | ext/tk/lib/tcltk.rb | 367 | |
| -rw-r--r-- | ext/tk/lib/tk.rb | 5729 | |
| -rw-r--r-- | ext/tk/lib/tk/after.rb | 6 | |
| -rw-r--r-- | ext/tk/lib/tk/autoload.rb | 760 | |
| -rw-r--r-- | ext/tk/lib/tk/bgerror.rb | 29 | |
| -rw-r--r-- | ext/tk/lib/tk/bindtag.rb | 138 | |
| -rw-r--r-- | ext/tk/lib/tk/busy.rb | 118 | |
| -rw-r--r-- | ext/tk/lib/tk/button.rb | 31 | |
| -rw-r--r-- | ext/tk/lib/tk/canvas.rb | 816 | |
| -rw-r--r-- | ext/tk/lib/tk/canvastag.rb | 459 | |
| -rw-r--r-- | ext/tk/lib/tk/checkbutton.rb | 32 | |
| -rw-r--r-- | ext/tk/lib/tk/clipboard.rb | 75 | |
| -rw-r--r-- | ext/tk/lib/tk/clock.rb | 71 | |
| -rw-r--r-- | ext/tk/lib/tk/composite.rb | 484 | |
| -rw-r--r-- | ext/tk/lib/tk/console.rb | 52 | |
| -rw-r--r-- | ext/tk/lib/tk/dialog.rb | 326 | |
| -rw-r--r-- | ext/tk/lib/tk/encodedstr.rb | 187 | |
| -rw-r--r-- | ext/tk/lib/tk/entry.rb | 120 | |
| -rw-r--r-- | ext/tk/lib/tk/event.rb | 562 | |
| -rw-r--r-- | ext/tk/lib/tk/font.rb | 2351 | |
| -rw-r--r-- | ext/tk/lib/tk/fontchooser.rb | 176 | |
| -rw-r--r-- | ext/tk/lib/tk/frame.rb | 132 | |
| -rw-r--r-- | ext/tk/lib/tk/grid.rb | 279 | |
| -rw-r--r-- | ext/tk/lib/tk/image.rb | 275 | |
| -rw-r--r-- | ext/tk/lib/tk/itemconfig.rb | 1222 | |
| -rw-r--r-- | ext/tk/lib/tk/itemfont.rb | 327 | |
| -rw-r--r-- | ext/tk/lib/tk/kinput.rb | 71 | |
| -rw-r--r-- | ext/tk/lib/tk/label.rb | 22 | |
| -rw-r--r-- | ext/tk/lib/tk/labelframe.rb | 31 | |
| -rw-r--r-- | ext/tk/lib/tk/listbox.rb | 284 | |
| -rw-r--r-- | ext/tk/lib/tk/macpkg.rb | 80 | |
| -rw-r--r-- | ext/tk/lib/tk/menu.rb | 718 | |
| -rw-r--r-- | ext/tk/lib/tk/menubar.rb | 137 | |
| -rw-r--r-- | ext/tk/lib/tk/menuspec.rb | 456 | |
| -rw-r--r-- | ext/tk/lib/tk/message.rb | 24 | |
| -rw-r--r-- | ext/tk/lib/tk/mngfocus.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tk/msgcat.rb | 296 | |
| -rw-r--r-- | ext/tk/lib/tk/namespace.rb | 551 | |
| -rw-r--r-- | ext/tk/lib/tk/optiondb.rb | 377 | |
| -rw-r--r-- | ext/tk/lib/tk/optionobj.rb | 212 | |
| -rw-r--r-- | ext/tk/lib/tk/pack.rb | 107 | |
| -rw-r--r-- | ext/tk/lib/tk/package.rb | 143 | |
| -rw-r--r-- | ext/tk/lib/tk/palette.rb | 55 | |
| -rw-r--r-- | ext/tk/lib/tk/panedwindow.rb | 260 | |
| -rw-r--r-- | ext/tk/lib/tk/place.rb | 128 | |
| -rw-r--r-- | ext/tk/lib/tk/radiobutton.rb | 73 | |
| -rw-r--r-- | ext/tk/lib/tk/root.rb | 95 | |
| -rw-r--r-- | ext/tk/lib/tk/scale.rb | 112 | |
| -rw-r--r-- | ext/tk/lib/tk/scrollable.rb | 82 | |
| -rw-r--r-- | ext/tk/lib/tk/scrollbar.rb | 183 | |
| -rw-r--r-- | ext/tk/lib/tk/scrollbox.rb | 39 | |
| -rw-r--r-- | ext/tk/lib/tk/selection.rb | 86 | |
| -rw-r--r-- | ext/tk/lib/tk/spinbox.rb | 144 | |
| -rw-r--r-- | ext/tk/lib/tk/tagfont.rb | 43 | |
| -rw-r--r-- | ext/tk/lib/tk/text.rb | 1604 | |
| -rw-r--r-- | ext/tk/lib/tk/textimage.rb | 88 | |
| -rw-r--r-- | ext/tk/lib/tk/textmark.rb | 204 | |
| -rw-r--r-- | ext/tk/lib/tk/texttag.rb | 321 | |
| -rw-r--r-- | ext/tk/lib/tk/textwindow.rb | 154 | |
| -rw-r--r-- | ext/tk/lib/tk/timer.rb | 669 | |
| -rw-r--r-- | ext/tk/lib/tk/toplevel.rb | 264 | |
| -rw-r--r-- | ext/tk/lib/tk/ttk_selector.rb | 98 | |
| -rw-r--r-- | ext/tk/lib/tk/txtwin_abst.rb | 39 | |
| -rw-r--r-- | ext/tk/lib/tk/validation.rb | 397 | |
| -rw-r--r-- | ext/tk/lib/tk/variable.rb | 1799 | |
| -rw-r--r-- | ext/tk/lib/tk/virtevent.rb | 139 | |
| -rw-r--r-- | ext/tk/lib/tk/winfo.rb | 392 | |
| -rw-r--r-- | ext/tk/lib/tk/winpkg.rb | 156 | |
| -rw-r--r-- | ext/tk/lib/tk/wm.rb | 552 | |
| -rw-r--r-- | ext/tk/lib/tk/xim.rb | 122 | |
| -rw-r--r-- | ext/tk/lib/tkafter.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkbgerror.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkcanvas.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkclass.rb | 47 | |
| -rw-r--r-- | ext/tk/lib/tkconsole.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkdialog.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkentry.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/ICONS.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/ICONS/icons.rb | 129 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/ICONS/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/SUPPORT_STATUS | 198 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt.rb | 189 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/barchart.rb | 79 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/bitmap.rb | 112 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/busy.rb | 83 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/component.rb | 2218 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/container.rb | 28 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/cutbuffer.rb | 23 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/dragdrop.rb | 269 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/eps.rb | 32 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/graph.rb | 67 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/htext.rb | 112 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/spline.rb | 23 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/stripchart.rb | 74 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/table.rb | 412 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tabnotebook.rb | 110 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tabset.rb | 504 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/ted.rb | 68 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tile.rb | 25 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tile/button.rb | 16 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tile/checkbutton.rb | 17 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tile/frame.rb | 16 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tile/label.rb | 16 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tile/radiobutton.rb | 17 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tile/scrollbar.rb | 16 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tile/toplevel.rb | 16 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/tree.rb | 1058 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/treeview.rb | 1287 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/unix_dnd.rb | 141 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/vector.rb | 256 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/watch.rb | 175 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/win_printer.rb | 61 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/winop.rb | 107 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget.rb | 153 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/arrowbutton.rb | 21 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/bitmap.rb | 21 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/button.rb | 31 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/buttonbox.rb | 90 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/combobox.rb | 62 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/dialog.rb | 194 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/dragsite.rb | 31 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/dropsite.rb | 39 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/dynamichelp.rb | 63 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/entry.rb | 43 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/label.rb | 41 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/labelentry.rb | 80 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/labelframe.rb | 52 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/listbox.rb | 361 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/mainframe.rb | 132 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/messagedlg.rb | 192 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/notebook.rb | 166 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/pagesmanager.rb | 73 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/panedwindow.rb | 42 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/panelframe.rb | 67 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/passwddlg.rb | 44 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/progressbar.rb | 20 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/progressdlg.rb | 58 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/scrollableframe.rb | 40 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/scrolledwindow.rb | 48 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/scrollview.rb | 25 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/selectcolor.rb | 73 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/selectfont.rb | 91 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/separator.rb | 20 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/spinbox.rb | 98 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/statusbar.rb | 62 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/titleframe.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/tree.rb | 500 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/bwidget/widget.rb | 129 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/itcl.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/itcl/incr_tcl.rb | 178 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/itcl/setup.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/itk.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/itk/incr_tk.rb | 446 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/itk/setup.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets.rb | 94 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/buttonbox.rb | 121 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/calendar.rb | 125 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/canvasprintbox.rb | 53 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/canvasprintdialog.rb | 38 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/checkbox.rb | 130 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/combobox.rb | 104 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/dateentry.rb | 20 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/datefield.rb | 58 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/dialog.rb | 20 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/dialogshell.rb | 121 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/disjointlistbox.rb | 50 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/entryfield.rb | 185 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/extbutton.rb | 40 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/extfileselectionbox.rb | 46 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/extfileselectiondialog.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/feedback.rb | 35 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/fileselectionbox.rb | 46 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/fileselectiondialog.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/finddialog.rb | 42 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/hierarchy.rb | 365 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/hyperhelp.rb | 50 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/labeledframe.rb | 39 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/labeledwidget.rb | 45 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/mainwindow.rb | 67 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/menubar.rb | 212 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/messagebox.rb | 93 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/messagedialog.rb | 20 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/notebook.rb | 175 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/optionmenu.rb | 92 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/panedwindow.rb | 134 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/promptdialog.rb | 131 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/pushbutton.rb | 35 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/radiobox.rb | 121 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/scopedobject.rb | 24 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb | 353 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/scrolledframe.rb | 59 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/scrolledhtml.rb | 58 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/scrolledlistbox.rb | 207 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/scrolledtext.rb | 568 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/scrolledwidget.rb | 20 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/selectionbox.rb | 102 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/selectiondialog.rb | 92 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/shell.rb | 38 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/spindate.rb | 48 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/spinint.rb | 30 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/spinner.rb | 169 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/spintime.rb | 48 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/tabnotebook.rb | 181 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/tabset.rb | 145 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/timeentry.rb | 25 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/timefield.rb | 58 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/toolbar.rb | 112 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/watch.rb | 56 | |
| -rwxr-xr-x | ext/tk/lib/tkextlib/pkg_checker.rb | 184 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib.rb | 105 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/README | 135 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/autoscroll.rb | 158 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/calendar.rb | 55 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/canvas_sqmap.rb | 36 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/canvas_zoom.rb | 21 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/chatwidget.rb | 151 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/crosshair.rb | 117 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/ctext.rb | 160 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/cursor.rb | 97 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/dateentry.rb | 62 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/datefield.rb | 57 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/diagrams.rb | 224 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/dialog.rb | 84 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/getstring.rb | 134 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/history.rb | 73 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/ico.rb | 146 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/ip_entry.rb | 75 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/khim.rb | 68 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/menuentry.rb | 47 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/ntext.rb | 146 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/panelframe.rb | 78 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/plotchart.rb | 1404 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/ruler.rb | 65 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/screenruler.rb | 68 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/scrolledwindow.rb | 57 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/scrollwin.rb | 61 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/statusbar.rb | 79 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/style.rb | 61 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/superframe.rb | 51 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/swaplist.rb | 150 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/tablelist.rb | 28 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/tablelist_core.rb | 1072 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/tablelist_tile.rb | 43 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/tkpiechart.rb | 314 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/toolbar.rb | 175 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/tooltip.rb | 104 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tcllib/widget.rb | 82 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tclx.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tclx/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tclx/tclx.rb | 74 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile.rb | 449 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/dialog.rb | 102 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/sizegrip.rb | 32 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/style.rb | 336 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tbutton.rb | 34 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tcheckbutton.rb | 38 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tcombobox.rb | 55 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tentry.rb | 49 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tframe.rb | 34 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tlabel.rb | 34 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tlabelframe.rb | 38 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tmenubutton.rb | 38 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tnotebook.rb | 147 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tpaned.rb | 245 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tprogressbar.rb | 57 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tradiobutton.rb | 38 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/treeview.rb | 1306 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tscale.rb | 56 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tscrollbar.rb | 63 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tseparator.rb | 34 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tspinbox.rb | 107 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tile/tsquare.rb | 30 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkDND.rb | 18 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkDND/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkDND/shape.rb | 125 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkDND/tkdnd.rb | 182 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkHTML.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkHTML/htmlwidget.rb | 453 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkHTML/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg.rb | 36 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/README | 26 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/bmp.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/gif.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/ico.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/jpeg.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/pcx.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/pixmap.rb | 44 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/png.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/ppm.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/ps.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/sgi.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/sun.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/tga.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/tiff.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/window.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/xbm.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tkimg/xpm.rb | 33 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tktable.rb | 14 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tktable/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tktable/tktable.rb | 966 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tktrans.rb | 14 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tktrans/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/tktrans/tktrans.rb | 64 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/treectrl.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/treectrl/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/treectrl/tktreectrl.rb | 2522 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/trofs.rb | 13 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/trofs/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/trofs/trofs.rb | 51 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/version.rb | 6 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/vu.rb | 48 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/vu/bargraph.rb | 61 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/vu/charts.rb | 53 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/vu/dial.rb | 102 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/vu/pie.rb | 286 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/vu/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/vu/spinbox.rb | 22 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/winico.rb | 14 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/winico/setup.rb | 8 | |
| -rw-r--r-- | ext/tk/lib/tkextlib/winico/winico.rb | 224 | |
| -rw-r--r-- | ext/tk/lib/tkfont.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkmacpkg.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkmenubar.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkmngfocus.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkpalette.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkscrollbox.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tktext.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkvirtevent.rb | 4 | |
| -rw-r--r-- | ext/tk/lib/tkwinpkg.rb | 4 | |
| -rw-r--r-- | ext/tk/old-README.tcltklib.eucj | 159 | |
| -rw-r--r-- | ext/tk/old-extconf.rb | 440 | |
| -rw-r--r-- | ext/tk/sample/24hr_clock.rb | 286 | |
| -rw-r--r-- | ext/tk/sample/binding_sample.rb | 87 | |
| -rw-r--r-- | ext/tk/sample/bindtag_sample.rb | 127 | |
| -rw-r--r-- | ext/tk/sample/binstr_usage.rb | 45 | |
| -rw-r--r-- | ext/tk/sample/btn_with_frame.rb | 20 | |
| -rw-r--r-- | ext/tk/sample/cd_timer.rb | 81 | |
| -rw-r--r-- | ext/tk/sample/cmd_res_test.rb | 17 | |
| -rw-r--r-- | ext/tk/sample/cmd_resource | 5 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ChangeLog | 64 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ChangeLog.prev | 9 | |
| -rw-r--r-- | ext/tk/sample/demos-en/README | 138 | |
| -rw-r--r-- | ext/tk/sample/demos-en/README.1st | 18 | |
| -rw-r--r-- | ext/tk/sample/demos-en/README.tkencoding | 29 | |
| -rw-r--r-- | ext/tk/sample/demos-en/anilabel.rb | 174 | |
| -rw-r--r-- | ext/tk/sample/demos-en/aniwave.rb | 118 | |
| -rw-r--r-- | ext/tk/sample/demos-en/arrow.rb | 249 | |
| -rw-r--r-- | ext/tk/sample/demos-en/bind.rb | 127 | |
| -rw-r--r-- | ext/tk/sample/demos-en/bitmap.rb | 75 | |
| -rw-r--r-- | ext/tk/sample/demos-en/browse1 | 63 | |
| -rw-r--r-- | ext/tk/sample/demos-en/browse2 | 82 | |
| -rw-r--r-- | ext/tk/sample/demos-en/button.rb | 84 | |
| -rw-r--r-- | ext/tk/sample/demos-en/check.rb | 72 | |
| -rw-r--r-- | ext/tk/sample/demos-en/check2.rb | 109 | |
| -rw-r--r-- | ext/tk/sample/demos-en/clrpick.rb | 87 | |
| -rw-r--r-- | ext/tk/sample/demos-en/colors.rb | 158 | |
| -rw-r--r-- | ext/tk/sample/demos-en/combo.rb | 96 | |
| -rw-r--r-- | ext/tk/sample/demos-en/cscroll.rb | 136 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ctext.rb | 207 | |
| -rw-r--r-- | ext/tk/sample/demos-en/dialog1.rb | 38 | |
| -rw-r--r-- | ext/tk/sample/demos-en/dialog2.rb | 41 | |
| -rw-r--r-- | ext/tk/sample/demos-en/doc.org/README | 7 | |
| -rw-r--r-- | ext/tk/sample/demos-en/doc.org/README.JP | 14 | |
| -rw-r--r-- | ext/tk/sample/demos-en/doc.org/README.tk80 | 46 | |
| -rw-r--r-- | ext/tk/sample/demos-en/doc.org/license.terms | 39 | |
| -rw-r--r-- | ext/tk/sample/demos-en/doc.org/license.terms.tk80 | 39 | |
| -rw-r--r-- | ext/tk/sample/demos-en/entry1.rb | 58 | |
| -rw-r--r-- | ext/tk/sample/demos-en/entry2.rb | 93 | |
| -rw-r--r-- | ext/tk/sample/demos-en/entry3.rb | 220 | |
| -rw-r--r-- | ext/tk/sample/demos-en/filebox.rb | 102 | |
| -rw-r--r-- | ext/tk/sample/demos-en/floor.rb | 1723 | |
| -rw-r--r-- | ext/tk/sample/demos-en/floor2.rb | 1722 | |
| -rw-r--r-- | ext/tk/sample/demos-en/form.rb | 64 | |
| -rw-r--r-- | ext/tk/sample/demos-en/goldberg.rb | 2006 | |
| -rw-r--r-- | ext/tk/sample/demos-en/hello | 14 | |
| -rw-r--r-- | ext/tk/sample/demos-en/hscale.rb | 75 | |
| -rw-r--r-- | ext/tk/sample/demos-en/icon.rb | 105 | |
| -rw-r--r-- | ext/tk/sample/demos-en/image1.rb | 65 | |
| -rw-r--r-- | ext/tk/sample/demos-en/image2.rb | 107 | |
| -rw-r--r-- | ext/tk/sample/demos-en/image3.rb | 125 | |
| -rw-r--r-- | ext/tk/sample/demos-en/items.rb | 381 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ixset | 333 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ixset2 | 367 | |
| -rw-r--r-- | ext/tk/sample/demos-en/knightstour.rb | 271 | |
| -rw-r--r-- | ext/tk/sample/demos-en/label.rb | 72 | |
| -rw-r--r-- | ext/tk/sample/demos-en/labelframe.rb | 95 | |
| -rw-r--r-- | ext/tk/sample/demos-en/mclist.rb | 117 | |
| -rw-r--r-- | ext/tk/sample/demos-en/menu.rb | 196 | |
| -rw-r--r-- | ext/tk/sample/demos-en/menu84.rb | 215 | |
| -rw-r--r-- | ext/tk/sample/demos-en/menubu.rb | 237 | |
| -rw-r--r-- | ext/tk/sample/demos-en/msgbox.rb | 90 | |
| -rw-r--r-- | ext/tk/sample/demos-en/msgbox2.rb | 91 | |
| -rw-r--r-- | ext/tk/sample/demos-en/paned1.rb | 47 | |
| -rw-r--r-- | ext/tk/sample/demos-en/paned2.rb | 94 | |
| -rw-r--r-- | ext/tk/sample/demos-en/pendulum.rb | 240 | |
| -rw-r--r-- | ext/tk/sample/demos-en/plot.rb | 124 | |
| -rw-r--r-- | ext/tk/sample/demos-en/puzzle.rb | 134 | |
| -rw-r--r-- | ext/tk/sample/demos-en/radio.rb | 86 | |
| -rw-r--r-- | ext/tk/sample/demos-en/radio2.rb | 109 | |
| -rw-r--r-- | ext/tk/sample/demos-en/radio3.rb | 117 | |
| -rw-r--r-- | ext/tk/sample/demos-en/rmt | 268 | |
| -rw-r--r-- | ext/tk/sample/demos-en/rolodex | 320 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ruler.rb | 205 | |
| -rw-r--r-- | ext/tk/sample/demos-en/sayings.rb | 106 | |
| -rw-r--r-- | ext/tk/sample/demos-en/search.rb | 187 | |
| -rw-r--r-- | ext/tk/sample/demos-en/spin.rb | 65 | |
| -rw-r--r-- | ext/tk/sample/demos-en/square | 81 | |
| -rw-r--r-- | ext/tk/sample/demos-en/states.rb | 80 | |
| -rw-r--r-- | ext/tk/sample/demos-en/style.rb | 231 | |
| -rw-r--r-- | ext/tk/sample/demos-en/tcolor | 526 | |
| -rw-r--r-- | ext/tk/sample/demos-en/text.rb | 128 | |
| -rw-r--r-- | ext/tk/sample/demos-en/textpeer.rb | 76 | |
| -rw-r--r-- | ext/tk/sample/demos-en/timer | 136 | |
| -rw-r--r-- | ext/tk/sample/demos-en/tkencoding.rb | 42 | |
| -rw-r--r-- | ext/tk/sample/demos-en/toolbar.rb | 130 | |
| -rw-r--r-- | ext/tk/sample/demos-en/tree.rb | 119 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ttkbut.rb | 139 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ttkmenu.rb | 85 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ttknote.rb | 89 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ttkpane.rb | 213 | |
| -rw-r--r-- | ext/tk/sample/demos-en/ttkprogress.rb | 66 | |
| -rw-r--r-- | ext/tk/sample/demos-en/twind.rb | 291 | |
| -rw-r--r-- | ext/tk/sample/demos-en/twind2.rb | 384 | |
| -rw-r--r-- | ext/tk/sample/demos-en/unicodeout.rb | 114 | |
| -rw-r--r-- | ext/tk/sample/demos-en/vscale.rb | 79 | |
| -rw-r--r-- | ext/tk/sample/demos-en/widget | 1087 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/README | 54 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/README.1st | 20 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/anilabel.rb | 177 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/aniwave.rb | 120 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/arrow.rb | 247 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/bind.rb | 125 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/bitmap.rb | 74 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/browse1 | 63 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/browse2 | 82 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/button.rb | 83 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/check.rb | 70 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/check2.rb | 110 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/clrpick.rb | 84 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/colors.rb | 155 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/combo.rb | 98 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/cscroll.rb | 134 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ctext.rb | 204 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/dialog1.rb | 39 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/dialog2.rb | 43 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/doc.org/README | 7 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/doc.org/README.JP | 14 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/doc.org/README.tk80 | 46 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/doc.org/license.terms | 39 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/doc.org/license.terms.tk80 | 39 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/entry1.rb | 60 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/entry2.rb | 91 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/entry3.rb | 225 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/filebox.rb | 102 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/floor.rb | 1721 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/floor2.rb | 1719 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/form.rb | 66 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/goldberg.rb | 2011 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/hello | 10 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/hscale.rb | 78 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/icon.rb | 103 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/image1.rb | 64 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/image2.rb | 106 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/image3.rb | 127 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/items.rb | 379 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ixset | 333 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ixset2 | 369 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/knightstour.rb | 273 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/label.rb | 69 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/labelframe.rb | 102 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/mclist.rb | 121 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/menu.rb | 201 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/menu84.rb | 213 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/menu8x.rb | 233 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/menubu.rb | 238 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/msgbox.rb | 89 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/msgbox2.rb | 90 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/paned1.rb | 52 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/paned2.rb | 100 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/pendulum.rb | 242 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/plot.rb | 126 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/puzzle.rb | 131 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/radio.rb | 84 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/radio2.rb | 112 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/radio3.rb | 119 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/rmt | 268 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/rolodex | 320 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/rolodex-j | 300 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ruler.rb | 203 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/sayings.rb | 103 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/search.rb | 184 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/spin.rb | 71 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/square | 81 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/states.rb | 74 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/style.rb | 270 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/tcolor | 534 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/text.rb | 120 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/textpeer.rb | 82 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/timer | 136 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/toolbar.rb | 136 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/tree.rb | 120 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ttkbut.rb | 145 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ttkmenu.rb | 91 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ttknote.rb | 97 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ttkpane.rb | 216 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/ttkprogress.rb | 71 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/twind.rb | 292 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/twind2.rb | 384 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/unicodeout.rb | 119 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/vscale.rb | 80 | |
| -rw-r--r-- | ext/tk/sample/demos-jp/widget | 1122 | |
| -rw-r--r-- | ext/tk/sample/editable_listbox.rb | 148 | |
| -rw-r--r-- | ext/tk/sample/encstr_usage.rb | 30 | |
| -rw-r--r-- | ext/tk/sample/figmemo_sample.rb | 456 | |
| -rw-r--r-- | ext/tk/sample/images/earth.gif | bin | 51712 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/images/earthris.gif | bin | 6343 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/images/face.xbm | 173 | |
| -rw-r--r-- | ext/tk/sample/images/flagdown.xbm | 27 | |
| -rw-r--r-- | ext/tk/sample/images/flagup.xbm | 27 | |
| -rw-r--r-- | ext/tk/sample/images/gray25.xbm | 6 | |
| -rw-r--r-- | ext/tk/sample/images/grey.25 | 6 | |
| -rw-r--r-- | ext/tk/sample/images/grey.5 | 6 | |
| -rw-r--r-- | ext/tk/sample/images/letters.xbm | 27 | |
| -rw-r--r-- | ext/tk/sample/images/noletter.xbm | 27 | |
| -rw-r--r-- | ext/tk/sample/images/pattern.xbm | 6 | |
| -rw-r--r-- | ext/tk/sample/images/tcllogo.gif | bin | 2341 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/images/teapot.ppm | 31 | |
| -rw-r--r-- | ext/tk/sample/irbtk.rb | 30 | |
| -rw-r--r-- | ext/tk/sample/irbtkw.rbw | 156 | |
| -rw-r--r-- | ext/tk/sample/iso2022-kr.txt | 2 | |
| -rw-r--r-- | ext/tk/sample/menubar1.rb | 51 | |
| -rw-r--r-- | ext/tk/sample/menubar2.rb | 56 | |
| -rw-r--r-- | ext/tk/sample/menubar3.rb | 72 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/README | 3 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/cs.msg | 84 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/de.msg | 88 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/el.msg | 98 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/en.msg | 83 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/en_gb.msg | 7 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/eo.msg | 87 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/es.msg | 84 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/fr.msg | 84 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/it.msg | 84 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/ja.msg | 13 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/nl.msg | 123 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/pl.msg | 87 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb/ru.msg | 87 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb2/README | 5 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb2/de.msg | 88 | |
| -rw-r--r-- | ext/tk/sample/msgs_rb2/ja.msg | 85 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/README | 4 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/cs.msg | 84 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/de.msg | 88 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/el.msg | 103 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/en.msg | 83 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/en_gb.msg | 7 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/eo.msg | 87 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/es.msg | 84 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/fr.msg | 84 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/it.msg | 84 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/ja.msg | 13 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/license.terms | 39 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/nl.msg | 123 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/pl.msg | 87 | |
| -rw-r--r-- | ext/tk/sample/msgs_tk/ru.msg | 87 | |
| -rw-r--r-- | ext/tk/sample/multi-ip_sample.rb | 103 | |
| -rw-r--r-- | ext/tk/sample/multi-ip_sample2.rb | 29 | |
| -rw-r--r-- | ext/tk/sample/optobj_sample.rb | 67 | |
| -rw-r--r-- | ext/tk/sample/propagate.rb | 30 | |
| -rw-r--r-- | ext/tk/sample/remote-ip_sample.rb | 33 | |
| -rw-r--r-- | ext/tk/sample/remote-ip_sample2.rb | 56 | |
| -rw-r--r-- | ext/tk/sample/resource.en | 13 | |
| -rw-r--r-- | ext/tk/sample/resource.ja | 13 | |
| -rw-r--r-- | ext/tk/sample/safe-tk.rb | 134 | |
| -rw-r--r-- | ext/tk/sample/scrollframe.rb | 247 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/batsu.gif | bin | 538 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tcltklib/lines0.tcl | 42 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/lines1.rb | 50 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/lines2.rb | 54 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/lines3.rb | 54 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/lines4.rb | 54 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/maru.gif | bin | 481 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tcltklib/safeTk.rb | 22 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/sample0.rb | 39 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/sample1.rb | 634 | |
| -rw-r--r-- | ext/tk/sample/tcltklib/sample2.rb | 451 | |
| -rw-r--r-- | ext/tk/sample/tkalignbox.rb | 235 | |
| -rw-r--r-- | ext/tk/sample/tkballoonhelp.rb | 220 | |
| -rw-r--r-- | ext/tk/sample/tkbiff.rb | 155 | |
| -rw-r--r-- | ext/tk/sample/tkbrowse.rb | 79 | |
| -rw-r--r-- | ext/tk/sample/tkcombobox.rb | 497 | |
| -rw-r--r-- | ext/tk/sample/tkdialog.rb | 61 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/ICONS/Orig_LICENSE.txt | 61 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/ICONS/tkIcons | 195 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/ICONS/tkIcons-sample.kde | 658 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/ICONS/tkIcons.kde | 195 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/ICONS/viewIcons.rb | 329 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/barchart5.rb | 101 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/calendar.rb | 117 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/graph6.rb | 2222 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/graph7.rb | 40 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/graph7a.rb | 63 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/graph7b.rb | 41 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/graph7c.rb | 45 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/images/buckskin.gif | bin | 7561 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/images/chalk.gif | bin | 4378 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/images/qv100.t.gif | bin | 2694 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/images/rain.gif | bin | 3785 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/images/sample.gif | bin | 186103 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/pareto.rb | 90 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/plot1.rb | 9 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/plot1b.rb | 10 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/readme.txt | 2 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/scripts/stipples.rb | 156 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/winop1.rb | 40 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/blt/winop2.rb | 28 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/Orig_LICENSE.txt | 53 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/basic.rb | 198 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/bwidget.xbm | 46 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/demo.rb | 243 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/dnd.rb | 46 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/manager.rb | 150 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/select.rb | 82 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/tmpldlg.rb | 221 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/tree.rb | 289 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/bwidget/x1.xbm | 2258 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/Orig_LICENSE.txt | 42 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/box.xbm | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/clear.gif | bin | 279 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/close.gif | bin | 249 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/copy.gif | bin | 269 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/cut.gif | bin | 179 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/exit.gif | bin | 396 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/find.gif | bin | 386 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/help.gif | bin | 591 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/line.xbm | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/mag.gif | bin | 183 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/new.gif | bin | 212 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/open.gif | bin | 258 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/oval.xbm | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/paste.gif | bin | 376 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/points.xbm | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/poly.gif | bin | 141 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/print.gif | bin | 263 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/ruler.gif | bin | 174 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/save.gif | bin | 270 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/select.gif | bin | 124 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/catalog_demo/images/text.xbm | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/buttonbox.rb | 22 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/calendar.rb | 10 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/canvasprintbox.rb | 8 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/canvasprintdialog.rb | 8 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/checkbox.rb | 12 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/combobox.rb | 32 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/dateentry.rb | 7 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/datefield.rb | 8 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/dialog.rb | 20 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/dialogshell.rb | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/disjointlistbox.rb | 16 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/entryfield-1.rb | 39 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/entryfield-2.rb | 44 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/entryfield-3.rb | 40 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/extbutton.rb | 20 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/extfileselectionbox.rb | 8 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/extfileselectiondialog.rb | 29 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/feedback.rb | 10 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/fileselectionbox.rb | 8 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/fileselectiondialog.rb | 28 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/finddialog.rb | 15 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/hierarchy.rb | 25 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/hyperhelp.rb | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/labeledframe.rb | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/labeledwidget.rb | 13 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/mainwindow.rb | 64 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/menubar.rb | 124 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/menubar2.rb | 44 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/messagebox1.rb | 19 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/messagebox2.rb | 19 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/messagedialog.rb | 44 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/notebook.rb | 30 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/notebook2.rb | 30 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/optionmenu.rb | 14 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/panedwindow.rb | 22 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/panedwindow2.rb | 22 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/promptdialog.rb | 17 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/pushbutton.rb | 9 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/radiobox.rb | 13 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/scrolledcanvas.rb | 13 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/scrolledframe.rb | 18 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/scrolledhtml.rb | 15 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/scrolledlistbox.rb | 22 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/scrolledtext.rb | 11 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/selectionbox.rb | 19 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/selectiondialog.rb | 12 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/shell.rb | 17 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/spindate.rb | 7 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/spinint.rb | 10 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/spinner.rb | 33 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/spintime.rb | 7 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/tabnotebook.rb | 26 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/tabnotebook2.rb | 30 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/tabset.rb | 34 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/timeentry.rb | 7 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/timefield.rb | 8 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/toolbar.rb | 152 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/iwidgets/sample/watch.rb | 18 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tcllib/Orig_LICENSE.txt | 46 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tcllib/datefield.rb | 29 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tcllib/plotdemos1.rb | 158 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tcllib/plotdemos2.rb | 71 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tcllib/plotdemos3.rb | 83 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tcllib/xyplot.rb | 17 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/Orig_LICENSE.txt | 30 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/demo.rb | 983 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/iconlib.tcl | 110 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/readme.txt | 2 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/repeater.tcl | 117 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue.tcl | 149 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowdown-h.gif | bin | 315 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowdown-p.gif | bin | 312 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowdown.gif | bin | 313 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowleft-h.gif | bin | 329 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowleft-p.gif | bin | 327 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowleft.gif | bin | 323 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowright-h.gif | bin | 330 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowright-p.gif | bin | 327 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowright.gif | bin | 324 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowup-h.gif | bin | 309 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowup-p.gif | bin | 313 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/arrowup.gif | bin | 314 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/button-h.gif | bin | 696 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/button-n.gif | bin | 770 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/button-n.xcf | bin | 1942 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/button-p.gif | bin | 769 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/check-hc.gif | bin | 254 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/check-hu.gif | bin | 234 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/check-nc.gif | bin | 249 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/check-nu.gif | bin | 229 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/radio-hc.gif | bin | 1098 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/radio-hu.gif | bin | 626 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/radio-nc.gif | bin | 389 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/radio-nu.gif | bin | 401 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/sb-thumb-p.gif | bin | 343 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/sb-thumb.gif | bin | 316 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/sb-vthumb-p.gif | bin | 333 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/sb-vthumb.gif | bin | 308 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/slider-p.gif | bin | 182 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/slider.gif | bin | 182 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/vslider-p.gif | bin | 183 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/blue/vslider.gif | bin | 283 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/blue/pkgIndex.tcl | 6 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik.tcl | 194 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/arrowdown-n.gif | bin | 273 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/arrowdown-p.gif | bin | 258 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/arrowleft-n.gif | bin | 292 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/arrowleft-p.gif | bin | 272 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/arrowright-n.gif | bin | 274 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/arrowright-p.gif | bin | 258 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/arrowup-n.gif | bin | 286 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/arrowup-p.gif | bin | 271 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/button-d.gif | bin | 1266 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/button-h.gif | bin | 896 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/button-n.gif | bin | 881 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/button-p.gif | bin | 625 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/button-s.gif | bin | 859 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/check-c.gif | bin | 434 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/check-u.gif | bin | 423 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/hsb-n.gif | bin | 401 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/hsb-p.gif | bin | 395 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/hslider-n.gif | bin | 592 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/mbut-a.gif | bin | 1116 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/mbut-arrow-n.gif | bin | 61 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/mbut-d.gif | bin | 1057 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/mbut-n.gif | bin | 1095 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/radio-c.gif | bin | 695 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/radio-u.gif | bin | 686 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/tab-n.gif | bin | 383 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/tab-p.gif | bin | 878 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/tbar-a.gif | bin | 907 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/tbar-n.gif | bin | 238 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/tbar-p.gif | bin | 927 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/vsb-n.gif | bin | 405 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/vsb-p.gif | bin | 399 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/keramik/vslider-n.gif | bin | 587 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/keramik/pkgIndex.tcl | 15 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc.rb | 226 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc.tcl | 163 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/button-h.gif | bin | 522 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/button-n.gif | bin | 554 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/button-p.gif | bin | 548 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/check-hc.gif | bin | 281 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/check-hu.gif | bin | 273 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/check-nc.gif | bin | 303 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/check-nu.gif | bin | 294 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/radio-hc.gif | bin | 652 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/radio-hu.gif | bin | 644 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/radio-nc.gif | bin | 632 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/kroc/radio-nu.gif | bin | 621 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/kroc/pkgIndex.tcl | 15 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/pkgIndex.tcl | 16 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik.tcl | 125 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/arrowdown-n.gif | bin | 362 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/arrowdown-p.gif | bin | 250 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/arrowleft-n.gif | bin | 378 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/arrowleft-p.gif | bin | 267 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/arrowright-n.gif | bin | 379 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/arrowright-p.gif | bin | 266 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/arrowup-n.gif | bin | 363 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/arrowup-p.gif | bin | 251 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/button-h.gif | bin | 439 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/button-n.gif | bin | 443 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/button-p.gif | bin | 302 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/check-hc.gif | bin | 169 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/check-hu.gif | bin | 170 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/check-nc.gif | bin | 235 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/check-nu.gif | bin | 226 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/check-pc.gif | bin | 169 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/hsb-n.gif | bin | 269 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/hslider-n.gif | bin | 342 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/radio-hc.gif | bin | 178 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/radio-hu.gif | bin | 179 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/radio-nc.gif | bin | 236 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/radio-nu.gif | bin | 178 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/radio-pc.gif | bin | 178 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/vsb-n.gif | bin | 366 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/themes/plastik/plastik/vslider-n.gif | bin | 336 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tile/toolbutton.tcl | 152 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/Orig_COPYRIGHT.txt | 12 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/README | 12 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/hv.rb | 313 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image1 | bin | 8995 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image10 | bin | 3095 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image11 | bin | 1425 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image12 | bin | 2468 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image13 | bin | 4073 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image14 | bin | 53 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image2 | bin | 42 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image3 | bin | 3473 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image4 | bin | 1988 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image5 | bin | 973 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image6 | bin | 2184 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image7 | bin | 2022 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image8 | bin | 1186 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/image9 | bin | 139 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page1/index.html | 115 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image1 | bin | 1966 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image10 | bin | 255 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image11 | bin | 590 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image12 | bin | 254 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image13 | bin | 493 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image14 | bin | 195 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image15 | bin | 68 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image16 | bin | 157 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image17 | bin | 81 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image18 | bin | 545 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image19 | bin | 53 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image2 | bin | 49 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image20 | bin | 533 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image21 | bin | 564 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image22 | bin | 81 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image23 | bin | 539 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image24 | bin | 151 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image25 | bin | 453 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image26 | bin | 520 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image27 | bin | 565 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image28 | bin | 416 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image29 | bin | 121 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image3 | bin | 10835 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image30 | bin | 663 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image31 | bin | 78 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image32 | bin | 556 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image33 | bin | 598 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image34 | bin | 496 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image35 | bin | 724 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image36 | bin | 404 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image37 | bin | 124 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image38 | bin | 8330 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image39 | bin | 369 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image4 | bin | 268 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image5 | bin | 492 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image6 | bin | 246 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image7 | bin | 551 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image8 | bin | 497 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/image9 | bin | 492 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page2/index.html | 433 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image1 | bin | 113 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image10 | bin | 5088 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image11 | bin | 4485 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image12 | bin | 3579 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image13 | bin | 5119 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image14 | bin | 3603 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image2 | bin | 74 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image3 | bin | 681 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image4 | bin | 3056 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image5 | bin | 2297 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image6 | bin | 79 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image7 | bin | 1613 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image8 | bin | 864 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/image9 | bin | 2379 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page3/index.html | 2787 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image1 | bin | 42 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image2 | bin | 14343 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image3 | bin | 17750 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image4 | bin | 61 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image5 | bin | 201 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image6 | bin | 214 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image7 | bin | 149 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image8 | bin | 203 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/image9 | bin | 1504 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/page4/index.html | 768 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkHTML/ss.rb | 436 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkimg/demo.rb | 1478 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkimg/license_terms_of_Img_extension | 41 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tkimg/readme.txt | 3 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/Orig_LICENSE.txt | 52 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/basic.rb | 60 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/buttons.rb | 76 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/command.rb | 89 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/debug.rb | 101 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/dynarows.rb | 99 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/maxsize.rb | 67 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/spreadsheet.rb | 137 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/tcllogo.gif | bin | 2341 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/tktable/valid.rb | 88 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/bitmaps.rb | 76 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/demo.rb | 1305 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/explorer.rb | 430 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/help.rb | 404 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/imovie.rb | 130 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/layout.rb | 159 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/mailwasher.rb | 269 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/outlook-folders.rb | 124 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/outlook-newgroup.rb | 448 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/big-dll.gif | bin | 437 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/big-exe.gif | bin | 368 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/big-file.gif | bin | 466 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/big-folder.gif | bin | 459 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/big-txt.gif | bin | 392 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/checked.gif | bin | 78 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/file.gif | bin | 279 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/folder-closed.gif | bin | 111 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/folder-open.gif | bin | 120 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/help-book-closed.gif | bin | 115 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/help-book-open.gif | bin | 128 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/help-page.gif | bin | 132 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/imovie-01.gif | bin | 5406 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/imovie-02.gif | bin | 5912 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/imovie-03.gif | bin | 4696 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/imovie-04.gif | bin | 5783 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/imovie-05.gif | bin | 3238 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/imovie-06.gif | bin | 3509 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/imovie-07.gif | bin | 2091 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/internet-check-off.gif | bin | 70 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/internet-check-on.gif | bin | 76 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/internet-print.gif | bin | 124 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/internet-radio-off.gif | bin | 68 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/internet-radio-on.gif | bin | 71 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/internet-search.gif | bin | 114 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/internet-security.gif | bin | 108 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/mac-collapse.gif | bin | 275 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/mac-expand.gif | bin | 277 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-arrow.gif | bin | 73 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-clip.gif | bin | 73 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-deleted.gif | bin | 138 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-draft.gif | bin | 134 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-folder.gif | bin | 133 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-group.gif | bin | 144 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-inbox.gif | bin | 133 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-local.gif | bin | 146 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-main.gif | bin | 174 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-outbox.gif | bin | 136 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-read-2.gif | bin | 343 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-read.gif | bin | 304 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-sent.gif | bin | 132 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-server.gif | bin | 163 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-unread.gif | bin | 303 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/outlook-watch.gif | bin | 98 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/sky.gif | bin | 6454 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/small-dll.gif | bin | 311 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/small-exe.gif | bin | 115 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/small-file.gif | bin | 338 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/small-folder.gif | bin | 307 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/small-txt.gif | bin | 302 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/pics/unchecked.gif | bin | 72 -> 0 bytes |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/random.rb | 508 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/readme.txt | 2 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/treectrl/www-options.rb | 303 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/Orig_LICENSE.txt | 51 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/README.txt | 50 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/canvItems.rb | 90 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/canvSticker.rb | 82 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/canvSticker2.rb | 101 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/dial_demo.rb | 113 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/m128_000.xbm | 174 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/oscilloscope.rb | 68 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/pie.rb | 56 | |
| -rw-r--r-- | ext/tk/sample/tkextlib/vu/vu_demo.rb | 67 | |
| -rw-r--r-- | ext/tk/sample/tkfrom.rb | 132 | |
| -rw-r--r-- | ext/tk/sample/tkhello.rb | 10 | |
| -rw-r--r-- | ext/tk/sample/tkline.rb | 47 | |
| -rw-r--r-- | ext/tk/sample/tkmenubutton.rb | 135 | |
| -rw-r--r-- | ext/tk/sample/tkmsgcat-load_rb.rb | 102 | |
| -rw-r--r-- | ext/tk/sample/tkmsgcat-load_rb2.rb | 102 | |
| -rw-r--r-- | ext/tk/sample/tkmsgcat-load_tk.rb | 118 | |
| -rw-r--r-- | ext/tk/sample/tkmulticolumnlist.rb | 743 | |
| -rw-r--r-- | ext/tk/sample/tkmultilistbox.rb | 654 | |
| -rw-r--r-- | ext/tk/sample/tkmultilistframe.rb | 940 | |
| -rw-r--r-- | ext/tk/sample/tkoptdb-safeTk.rb | 73 | |
| -rw-r--r-- | ext/tk/sample/tkoptdb.rb | 106 | |
| -rw-r--r-- | ext/tk/sample/tkrttimer.rb | 77 | |
| -rw-r--r-- | ext/tk/sample/tksleep_sample.rb | 29 | |
| -rw-r--r-- | ext/tk/sample/tktextframe.rb | 281 | |
| -rw-r--r-- | ext/tk/sample/tktextio.rb | 1060 | |
| -rw-r--r-- | ext/tk/sample/tktimer.rb | 50 | |
| -rw-r--r-- | ext/tk/sample/tktimer2.rb | 47 | |
| -rw-r--r-- | ext/tk/sample/tktimer3.rb | 59 | |
| -rw-r--r-- | ext/tk/sample/tktree.rb | 103 | |
| -rw-r--r-- | ext/tk/sample/tktree.tcl | 305 | |
| -rw-r--r-- | ext/tk/sample/ttk_wrapper.rb | 154 | |
| -rw-r--r-- | ext/tk/stubs.c | 594 | |
| -rw-r--r-- | ext/tk/stubs.h | 33 | |
| -rw-r--r-- | ext/tk/tcltklib.c | 11070 | |
| -rw-r--r-- | ext/tk/tkutil/depend | 1 | |
| -rw-r--r-- | ext/tk/tkutil/extconf.rb | 18 | |
| -rw-r--r-- | ext/tk/tkutil/tkutil.c | 1861 | |
| -rw-r--r-- | ext/win32/depend | 2 | |
| -rw-r--r-- | ext/win32/extconf.rb | 4 | |
| -rw-r--r-- | ext/win32/lib/win32/registry.rb | 914 | |
| -rw-r--r-- | ext/win32/lib/win32/resolv.rb | 135 | |
| -rw-r--r-- | ext/win32/lib/win32/sspi.rb | 338 | |
| -rw-r--r-- | ext/win32/resolv/depend | 17 | |
| -rw-r--r-- | ext/win32/resolv/extconf.rb | 3 | |
| -rw-r--r-- | ext/win32/resolv/resolv.c | 65 | |
| -rw-r--r-- | ext/win32ole/depend | 13 | |
| -rw-r--r-- | ext/win32ole/extconf.rb | 33 | |
| -rw-r--r-- | ext/win32ole/lib/win32ole.rb | 45 | |
| -rw-r--r-- | ext/win32ole/lib/win32ole/property.rb | 1 | |
| -rw-r--r-- | ext/win32ole/sample/excel1.rb | 10 | |
| -rw-r--r-- | ext/win32ole/sample/excel2.rb | 13 | |
| -rw-r--r-- | ext/win32ole/sample/excel3.rb | 10 | |
| -rw-r--r-- | ext/win32ole/sample/ie.rb | 3 | |
| -rw-r--r-- | ext/win32ole/sample/ieconst.rb | 1 | |
| -rw-r--r-- | ext/win32ole/sample/ienavi.rb | 7 | |
| -rw-r--r-- | ext/win32ole/sample/ienavi2.rb | 1 | |
| -rw-r--r-- | ext/win32ole/sample/oledirs.rb | 1 | |
| -rw-r--r-- | ext/win32ole/sample/olegen.rb | 9 | |
| -rw-r--r-- | ext/win32ole/sample/xml.rb | 13 | |
| -rw-r--r-- | ext/win32ole/win32ole.c | 6800 | |
| -rw-r--r-- | ext/win32ole/win32ole.gemspec | 22 | |
| -rw-r--r-- | ext/win32ole/win32ole.h | 155 | |
| -rw-r--r-- | ext/win32ole/win32ole_error.c | 87 | |
| -rw-r--r-- | ext/win32ole/win32ole_error.h | 9 | |
| -rw-r--r-- | ext/win32ole/win32ole_event.c | 1278 | |
| -rw-r--r-- | ext/win32ole/win32ole_event.h | 6 | |
| -rw-r--r-- | ext/win32ole/win32ole_method.c | 953 | |
| -rw-r--r-- | ext/win32ole/win32ole_method.h | 16 | |
| -rw-r--r-- | ext/win32ole/win32ole_param.c | 439 | |
| -rw-r--r-- | ext/win32ole/win32ole_param.h | 8 | |
| -rw-r--r-- | ext/win32ole/win32ole_record.c | 607 | |
| -rw-r--r-- | ext/win32ole/win32ole_record.h | 10 | |
| -rw-r--r-- | ext/win32ole/win32ole_type.c | 918 | |
| -rw-r--r-- | ext/win32ole/win32ole_type.h | 8 | |
| -rw-r--r-- | ext/win32ole/win32ole_typelib.c | 847 | |
| -rw-r--r-- | ext/win32ole/win32ole_typelib.h | 11 | |
| -rw-r--r-- | ext/win32ole/win32ole_variable.c | 384 | |
| -rw-r--r-- | ext/win32ole/win32ole_variable.h | 8 | |
| -rw-r--r-- | ext/win32ole/win32ole_variant.c | 736 | |
| -rw-r--r-- | ext/win32ole/win32ole_variant.h | 9 | |
| -rw-r--r-- | ext/win32ole/win32ole_variant_m.c | 151 | |
| -rw-r--r-- | ext/win32ole/win32ole_variant_m.h | 7 | |
| -rw-r--r-- | ext/zlib/.gitignore | 1 | |
| -rw-r--r-- | ext/zlib/depend | 176 | |
| -rw-r--r-- | ext/zlib/extconf.rb | 99 | |
| -rw-r--r-- | ext/zlib/zlib.c | 2442 | |
| -rw-r--r-- | ext/zlib/zlib.gemspec | 31 | |
| -rw-r--r-- | file.c | 5736 | |
| -rw-r--r-- | gc.c | 16004 | |
| -rw-r--r-- | gc.h | 107 | |
| -rw-r--r-- | gc.rb | 296 | |
| -rw-r--r-- | gem_prelude.rb | 263 | |
| -rw-r--r-- | gems/bundled_gems | 16 | |
| -rw-r--r-- | gems/lib/core_assertions.rb | 1 | |
| -rw-r--r-- | gems/lib/envutil.rb | 1 | |
| -rw-r--r-- | gems/lib/rake/extensiontask.rb | 12 | |
| -rw-r--r-- | golf_prelude.rb | 52 | |
| -rw-r--r-- | goruby.c | 50 | |
| -rw-r--r-- | hash.c | 7572 | |
| -rw-r--r-- | hrtime.h | 227 | |
| -rw-r--r-- | ia64.s | 42 | |
| -rw-r--r-- | id.c | 51 | |
| -rw-r--r-- | id_table.c | 326 | |
| -rw-r--r-- | id_table.h | 39 | |
| -rw-r--r-- | include/ruby.h | 32 | |
| -rw-r--r-- | include/ruby/assert.h | 234 | |
| -rw-r--r-- | include/ruby/atomic.h | 890 | |
| -rw-r--r-- | include/ruby/backward.h | 25 | |
| -rw-r--r-- | include/ruby/backward/2/assume.h | 56 | |
| -rw-r--r-- | include/ruby/backward/2/attributes.h | 165 | |
| -rw-r--r-- | include/ruby/backward/2/bool.h | 36 | |
| -rw-r--r-- | include/ruby/backward/2/gcc_version_since.h | 37 | |
| -rw-r--r-- | include/ruby/backward/2/inttypes.h | 131 | |
| -rw-r--r-- | include/ruby/backward/2/limits.h | 99 | |
| -rw-r--r-- | include/ruby/backward/2/long_long.h | 73 | |
| -rw-r--r-- | include/ruby/backward/2/r_cast.h | 32 | |
| -rw-r--r-- | include/ruby/backward/2/rmodule.h | 36 | |
| -rw-r--r-- | include/ruby/backward/2/stdalign.h | 30 | |
| -rw-r--r-- | include/ruby/backward/2/stdarg.h | 69 | |
| -rw-r--r-- | include/ruby/backward/cxxanyargs.hpp | 700 | |
| -rw-r--r-- | include/ruby/backward/rubyio.h | 6 | |
| -rw-r--r-- | include/ruby/backward/rubysig.h | 48 | |
| -rw-r--r-- | include/ruby/backward/st.h | 6 | |
| -rw-r--r-- | include/ruby/backward/util.h | 6 | |
| -rw-r--r-- | include/ruby/debug.h | 667 | |
| -rw-r--r-- | include/ruby/defines.h | 376 | |
| -rw-r--r-- | include/ruby/encoding.h | 358 | |
| -rw-r--r-- | include/ruby/fiber/scheduler.h | 374 | |
| -rw-r--r-- | include/ruby/intern.h | 914 | |
| -rw-r--r-- | include/ruby/internal/abi.h | 58 | |
| -rw-r--r-- | include/ruby/internal/anyargs.h | 398 | |
| -rw-r--r-- | include/ruby/internal/arithmetic.h | 39 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/char.h | 81 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/double.h | 72 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/fixnum.h | 60 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/gid_t.h | 41 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/int.h | 264 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/intptr_t.h | 74 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/long.h | 356 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/long_long.h | 135 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/mode_t.h | 41 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/off_t.h | 62 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/pid_t.h | 41 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/short.h | 113 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/size_t.h | 66 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/st_data_t.h | 75 | |
| -rw-r--r-- | include/ruby/internal/arithmetic/uid_t.h | 41 | |
| -rw-r--r-- | include/ruby/internal/assume.h | 87 | |
| -rw-r--r-- | include/ruby/internal/attr/alloc_size.h | 32 | |
| -rw-r--r-- | include/ruby/internal/attr/artificial.h | 46 | |
| -rw-r--r-- | include/ruby/internal/attr/cold.h | 37 | |
| -rw-r--r-- | include/ruby/internal/attr/const.h | 46 | |
| -rw-r--r-- | include/ruby/internal/attr/constexpr.h | 84 | |
| -rw-r--r-- | include/ruby/internal/attr/deprecated.h | 75 | |
| -rw-r--r-- | include/ruby/internal/attr/diagnose_if.h | 42 | |
| -rw-r--r-- | include/ruby/internal/attr/enum_extensibility.h | 32 | |
| -rw-r--r-- | include/ruby/internal/attr/error.h | 32 | |
| -rw-r--r-- | include/ruby/internal/attr/flag_enum.h | 33 | |
| -rw-r--r-- | include/ruby/internal/attr/forceinline.h | 40 | |
| -rw-r--r-- | include/ruby/internal/attr/format.h | 38 | |
| -rw-r--r-- | include/ruby/internal/attr/maybe_unused.h | 38 | |
| -rw-r--r-- | include/ruby/internal/attr/noalias.h | 69 | |
| -rw-r--r-- | include/ruby/internal/attr/nodiscard.h | 45 | |
| -rw-r--r-- | include/ruby/internal/attr/noexcept.h | 91 | |
| -rw-r--r-- | include/ruby/internal/attr/noinline.h | 35 | |
| -rw-r--r-- | include/ruby/internal/attr/nonnull.h | 34 | |
| -rw-r--r-- | include/ruby/internal/attr/nonstring.h | 32 | |
| -rw-r--r-- | include/ruby/internal/attr/noreturn.h | 48 | |
| -rw-r--r-- | include/ruby/internal/attr/pure.h | 43 | |
| -rw-r--r-- | include/ruby/internal/attr/restrict.h | 44 | |
| -rw-r--r-- | include/ruby/internal/attr/returns_nonnull.h | 37 | |
| -rw-r--r-- | include/ruby/internal/attr/warning.h | 32 | |
| -rw-r--r-- | include/ruby/internal/attr/weakref.h | 32 | |
| -rw-r--r-- | include/ruby/internal/cast.h | 50 | |
| -rw-r--r-- | include/ruby/internal/compiler_is.h | 45 | |
| -rw-r--r-- | include/ruby/internal/compiler_is/apple.h | 40 | |
| -rw-r--r-- | include/ruby/internal/compiler_is/clang.h | 37 | |
| -rw-r--r-- | include/ruby/internal/compiler_is/gcc.h | 45 | |
| -rw-r--r-- | include/ruby/internal/compiler_is/intel.h | 40 | |
| -rw-r--r-- | include/ruby/internal/compiler_is/msvc.h | 56 | |
| -rw-r--r-- | include/ruby/internal/compiler_is/sunpro.h | 54 | |
| -rw-r--r-- | include/ruby/internal/compiler_since.h | 61 | |
| -rw-r--r-- | include/ruby/internal/config.h | 155 | |
| -rw-r--r-- | include/ruby/internal/constant_p.h | 38 | |
| -rw-r--r-- | include/ruby/internal/core.h | 35 | |
| -rw-r--r-- | include/ruby/internal/core/rarray.h | 585 | |
| -rw-r--r-- | include/ruby/internal/core/rbasic.h | 158 | |
| -rw-r--r-- | include/ruby/internal/core/rbignum.h | 80 | |
| -rw-r--r-- | include/ruby/internal/core/rclass.h | 93 | |
| -rw-r--r-- | include/ruby/internal/core/rdata.h | 386 | |
| -rw-r--r-- | include/ruby/internal/core/rfile.h | 51 | |
| -rw-r--r-- | include/ruby/internal/core/rhash.h | 144 | |
| -rw-r--r-- | include/ruby/internal/core/rmatch.h | 146 | |
| -rw-r--r-- | include/ruby/internal/core/robject.h | 176 | |
| -rw-r--r-- | include/ruby/internal/core/rregexp.h | 168 | |
| -rw-r--r-- | include/ruby/internal/core/rstring.h | 578 | |
| -rw-r--r-- | include/ruby/internal/core/rstruct.h | 121 | |
| -rw-r--r-- | include/ruby/internal/core/rtypeddata.h | 604 | |
| -rw-r--r-- | include/ruby/internal/ctype.h | 545 | |
| -rw-r--r-- | include/ruby/internal/dllexport.h | 112 | |
| -rw-r--r-- | include/ruby/internal/dosish.h | 89 | |
| -rw-r--r-- | include/ruby/internal/encoding/coderange.h | 202 | |
| -rw-r--r-- | include/ruby/internal/encoding/ctype.h | 258 | |
| -rw-r--r-- | include/ruby/internal/encoding/encoding.h | 1060 | |
| -rw-r--r-- | include/ruby/internal/encoding/pathname.h | 184 | |
| -rw-r--r-- | include/ruby/internal/encoding/re.h | 46 | |
| -rw-r--r-- | include/ruby/internal/encoding/sprintf.h | 78 | |
| -rw-r--r-- | include/ruby/internal/encoding/string.h | 346 | |
| -rw-r--r-- | include/ruby/internal/encoding/symbol.h | 100 | |
| -rw-r--r-- | include/ruby/internal/encoding/transcode.h | 562 | |
| -rw-r--r-- | include/ruby/internal/error.h | 582 | |
| -rw-r--r-- | include/ruby/internal/eval.h | 400 | |
| -rw-r--r-- | include/ruby/internal/event.h | 154 | |
| -rw-r--r-- | include/ruby/internal/fl_type.h | 948 | |
| -rw-r--r-- | include/ruby/internal/gc.h | 62 | |
| -rw-r--r-- | include/ruby/internal/glob.h | 113 | |
| -rw-r--r-- | include/ruby/internal/globals.h | 209 | |
| -rw-r--r-- | include/ruby/internal/has/attribute.h | 163 | |
| -rw-r--r-- | include/ruby/internal/has/builtin.h | 117 | |
| -rw-r--r-- | include/ruby/internal/has/c_attribute.h | 38 | |
| -rw-r--r-- | include/ruby/internal/has/cpp_attribute.h | 86 | |
| -rw-r--r-- | include/ruby/internal/has/declspec_attribute.h | 47 | |
| -rw-r--r-- | include/ruby/internal/has/extension.h | 33 | |
| -rw-r--r-- | include/ruby/internal/has/feature.h | 31 | |
| -rw-r--r-- | include/ruby/internal/has/warning.h | 31 | |
| -rw-r--r-- | include/ruby/internal/intern/array.h | 657 | |
| -rw-r--r-- | include/ruby/internal/intern/bignum.h | 846 | |
| -rw-r--r-- | include/ruby/internal/intern/class.h | 394 | |
| -rw-r--r-- | include/ruby/internal/intern/compar.h | 62 | |
| -rw-r--r-- | include/ruby/internal/intern/complex.h | 253 | |
| -rw-r--r-- | include/ruby/internal/intern/cont.h | 282 | |
| -rw-r--r-- | include/ruby/internal/intern/dir.h | 42 | |
| -rw-r--r-- | include/ruby/internal/intern/enum.h | 73 | |
| -rw-r--r-- | include/ruby/internal/intern/enumerator.h | 259 | |
| -rw-r--r-- | include/ruby/internal/intern/error.h | 287 | |
| -rw-r--r-- | include/ruby/internal/intern/eval.h | 222 | |
| -rw-r--r-- | include/ruby/internal/intern/file.h | 213 | |
| -rw-r--r-- | include/ruby/internal/intern/gc.h | 392 | |
| -rw-r--r-- | include/ruby/internal/intern/hash.h | 320 | |
| -rw-r--r-- | include/ruby/internal/intern/io.h | 661 | |
| -rw-r--r-- | include/ruby/internal/intern/load.h | 218 | |
| -rw-r--r-- | include/ruby/internal/intern/marshal.h | 112 | |
| -rw-r--r-- | include/ruby/internal/intern/numeric.h | 208 | |
| -rw-r--r-- | include/ruby/internal/intern/object.h | 501 | |
| -rw-r--r-- | include/ruby/internal/intern/parse.h | 194 | |
| -rw-r--r-- | include/ruby/internal/intern/proc.h | 353 | |
| -rw-r--r-- | include/ruby/internal/intern/process.h | 273 | |
| -rw-r--r-- | include/ruby/internal/intern/random.h | 116 | |
| -rw-r--r-- | include/ruby/internal/intern/range.h | 89 | |
| -rw-r--r-- | include/ruby/internal/intern/rational.h | 172 | |
| -rw-r--r-- | include/ruby/internal/intern/re.h | 249 | |
| -rw-r--r-- | include/ruby/internal/intern/ruby.h | 77 | |
| -rw-r--r-- | include/ruby/internal/intern/select.h | 86 | |
| -rw-r--r-- | include/ruby/internal/intern/select/largesize.h | 214 | |
| -rw-r--r-- | include/ruby/internal/intern/select/posix.h | 144 | |
| -rw-r--r-- | include/ruby/internal/intern/select/win32.h | 259 | |
| -rw-r--r-- | include/ruby/internal/intern/signal.h | 152 | |
| -rw-r--r-- | include/ruby/internal/intern/sprintf.h | 159 | |
| -rw-r--r-- | include/ruby/internal/intern/string.h | 1757 | |
| -rw-r--r-- | include/ruby/internal/intern/struct.h | 203 | |
| -rw-r--r-- | include/ruby/internal/intern/thread.h | 492 | |
| -rw-r--r-- | include/ruby/internal/intern/time.h | 161 | |
| -rw-r--r-- | include/ruby/internal/intern/variable.h | 628 | |
| -rw-r--r-- | include/ruby/internal/intern/vm.h | 431 | |
| -rw-r--r-- | include/ruby/internal/interpreter.h | 304 | |
| -rw-r--r-- | include/ruby/internal/iterator.h | 513 | |
| -rw-r--r-- | include/ruby/internal/memory.h | 666 | |
| -rw-r--r-- | include/ruby/internal/method.h | 205 | |
| -rw-r--r-- | include/ruby/internal/module.h | 177 | |
| -rw-r--r-- | include/ruby/internal/newobj.h | 195 | |
| -rw-r--r-- | include/ruby/internal/rgengc.h | 443 | |
| -rw-r--r-- | include/ruby/internal/scan_args.h | 534 | |
| -rw-r--r-- | include/ruby/internal/special_consts.h | 362 | |
| -rw-r--r-- | include/ruby/internal/static_assert.h | 77 | |
| -rw-r--r-- | include/ruby/internal/stdalign.h | 135 | |
| -rw-r--r-- | include/ruby/internal/stdbool.h | 51 | |
| -rw-r--r-- | include/ruby/internal/symbol.h | 332 | |
| -rw-r--r-- | include/ruby/internal/value.h | 133 | |
| -rw-r--r-- | include/ruby/internal/value_type.h | 449 | |
| -rw-r--r-- | include/ruby/internal/variable.h | 337 | |
| -rw-r--r-- | include/ruby/internal/warning_push.h | 124 | |
| -rw-r--r-- | include/ruby/internal/xmalloc.h | 392 | |
| -rw-r--r-- | include/ruby/io.h | 1086 | |
| -rw-r--r-- | include/ruby/io/buffer.h | 92 | |
| -rw-r--r-- | include/ruby/memory_view.h | 325 | |
| -rw-r--r-- | include/ruby/missing.h | 277 | |
| -rw-r--r-- | include/ruby/onigmo.h | 952 | |
| -rw-r--r-- | include/ruby/oniguruma.h | 807 | |
| -rw-r--r-- | include/ruby/ractor.h | 264 | |
| -rw-r--r-- | include/ruby/random.h | 359 | |
| -rw-r--r-- | include/ruby/re.h | 202 | |
| -rw-r--r-- | include/ruby/regex.h | 29 | |
| -rw-r--r-- | include/ruby/ruby.h | 1692 | |
| -rw-r--r-- | include/ruby/st.h | 198 | |
| -rw-r--r-- | include/ruby/subst.h | 10 | |
| -rw-r--r-- | include/ruby/thread.h | 235 | |
| -rw-r--r-- | include/ruby/thread_native.h | 205 | |
| -rw-r--r-- | include/ruby/util.h | 295 | |
| -rw-r--r-- | include/ruby/version.h | 167 | |
| -rw-r--r-- | include/ruby/vm.h | 82 | |
| -rw-r--r-- | include/ruby/win32.h | 498 | |
| -rw-r--r-- | inits.c | 59 | |
| -rw-r--r-- | insns.def | 2364 | |
| -rw-r--r-- | internal.h | 113 | |
| -rw-r--r-- | internal/array.h | 163 | |
| -rw-r--r-- | internal/basic_operators.h | 64 | |
| -rw-r--r-- | internal/bignum.h | 246 | |
| -rw-r--r-- | internal/bits.h | 565 | |
| -rw-r--r-- | internal/class.h | 187 | |
| -rw-r--r-- | internal/cmdlineopt.h | 61 | |
| -rw-r--r-- | internal/compar.h | 29 | |
| -rw-r--r-- | internal/compile.h | 35 | |
| -rw-r--r-- | internal/compilers.h | 107 | |
| -rw-r--r-- | internal/complex.h | 29 | |
| -rw-r--r-- | internal/cont.h | 32 | |
| -rw-r--r-- | internal/dir.h | 16 | |
| -rw-r--r-- | internal/enc.h | 19 | |
| -rw-r--r-- | internal/encoding.h | 32 | |
| -rw-r--r-- | internal/enum.h | 18 | |
| -rw-r--r-- | internal/enumerator.h | 21 | |
| -rw-r--r-- | internal/error.h | 191 | |
| -rw-r--r-- | internal/eval.h | 33 | |
| -rw-r--r-- | internal/file.h | 38 | |
| -rw-r--r-- | internal/fixnum.h | 184 | |
| -rw-r--r-- | internal/gc.h | 192 | |
| -rw-r--r-- | internal/hash.h | 244 | |
| -rw-r--r-- | internal/imemo.h | 242 | |
| -rw-r--r-- | internal/inits.h | 50 | |
| -rw-r--r-- | internal/io.h | 38 | |
| -rw-r--r-- | internal/load.h | 18 | |
| -rw-r--r-- | internal/loadpath.h | 16 | |
| -rw-r--r-- | internal/math.h | 23 | |
| -rw-r--r-- | internal/missing.h | 18 | |
| -rw-r--r-- | internal/numeric.h | 275 | |
| -rw-r--r-- | internal/object.h | 61 | |
| -rw-r--r-- | internal/parse.h | 25 | |
| -rw-r--r-- | internal/proc.h | 32 | |
| -rw-r--r-- | internal/process.h | 137 | |
| -rw-r--r-- | internal/ractor.h | 6 | |
| -rw-r--r-- | internal/random.h | 16 | |
| -rw-r--r-- | internal/range.h | 40 | |
| -rw-r--r-- | internal/rational.h | 72 | |
| -rw-r--r-- | internal/re.h | 30 | |
| -rw-r--r-- | internal/sanitizers.h | 190 | |
| -rw-r--r-- | internal/serial.h | 23 | |
| -rw-r--r-- | internal/signal.h | 21 | |
| -rw-r--r-- | internal/static_assert.h | 16 | |
| -rw-r--r-- | internal/string.h | 147 | |
| -rw-r--r-- | internal/struct.h | 153 | |
| -rw-r--r-- | internal/symbol.h | 42 | |
| -rw-r--r-- | internal/thread.h | 56 | |
| -rw-r--r-- | internal/time.h | 37 | |
| -rw-r--r-- | internal/transcode.h | 20 | |
| -rw-r--r-- | internal/util.h | 27 | |
| -rw-r--r-- | internal/variable.h | 90 | |
| -rw-r--r-- | internal/vm.h | 134 | |
| -rw-r--r-- | internal/warnings.h | 16 | |
| -rw-r--r-- | io.c | 14091 | |
| -rw-r--r-- | io.rb | 123 | |
| -rw-r--r-- | io_buffer.c | 3515 | |
| -rw-r--r-- | iseq.c | 4432 | |
| -rw-r--r-- | iseq.h | 368 | |
| -rw-r--r-- | kernel.rb | 178 | |
| -rw-r--r-- | lex.c.blt | 218 | |
| -rw-r--r-- | lib/.document | 107 | |
| -rw-r--r-- | lib/English.gemspec | 22 | |
| -rw-r--r-- | lib/English.rb | 99 | |
| -rw-r--r-- | lib/README | 93 | |
| -rw-r--r-- | lib/abbrev.gemspec | 22 | |
| -rw-r--r-- | lib/abbrev.rb | 135 | |
| -rw-r--r-- | lib/base64.gemspec | 20 | |
| -rw-r--r-- | lib/base64.rb | 31 | |
| -rw-r--r-- | lib/benchmark.rb | 371 | |
| -rw-r--r-- | lib/benchmark/benchmark.gemspec | 29 | |
| -rw-r--r-- | lib/benchmark/version.rb | 4 | |
| -rw-r--r-- | lib/bundler.rb | 662 | |
| -rw-r--r-- | lib/bundler/.document | 1 | |
| -rw-r--r-- | lib/bundler/build_metadata.rb | 43 | |
| -rw-r--r-- | lib/bundler/bundler.gemspec | 43 | |
| -rw-r--r-- | lib/bundler/capistrano.rb | 22 | |
| -rw-r--r-- | lib/bundler/cli.rb | 894 | |
| -rw-r--r-- | lib/bundler/cli/add.rb | 47 | |
| -rw-r--r-- | lib/bundler/cli/binstubs.rb | 57 | |
| -rw-r--r-- | lib/bundler/cli/cache.rb | 43 | |
| -rw-r--r-- | lib/bundler/cli/check.rb | 40 | |
| -rw-r--r-- | lib/bundler/cli/clean.rb | 25 | |
| -rw-r--r-- | lib/bundler/cli/common.rb | 130 | |
| -rw-r--r-- | lib/bundler/cli/config.rb | 203 | |
| -rw-r--r-- | lib/bundler/cli/console.rb | 43 | |
| -rw-r--r-- | lib/bundler/cli/doctor.rb | 157 | |
| -rw-r--r-- | lib/bundler/cli/exec.rb | 88 | |
| -rw-r--r-- | lib/bundler/cli/fund.rb | 36 | |
| -rw-r--r-- | lib/bundler/cli/gem.rb | 465 | |
| -rw-r--r-- | lib/bundler/cli/info.rb | 94 | |
| -rw-r--r-- | lib/bundler/cli/init.rb | 51 | |
| -rw-r--r-- | lib/bundler/cli/inject.rb | 60 | |
| -rw-r--r-- | lib/bundler/cli/install.rb | 189 | |
| -rw-r--r-- | lib/bundler/cli/issue.rb | 41 | |
| -rw-r--r-- | lib/bundler/cli/list.rb | 66 | |
| -rw-r--r-- | lib/bundler/cli/lock.rb | 70 | |
| -rw-r--r-- | lib/bundler/cli/open.rb | 31 | |
| -rw-r--r-- | lib/bundler/cli/outdated.rb | 297 | |
| -rw-r--r-- | lib/bundler/cli/platform.rb | 48 | |
| -rw-r--r-- | lib/bundler/cli/plugin.rb | 41 | |
| -rw-r--r-- | lib/bundler/cli/pristine.rb | 52 | |
| -rw-r--r-- | lib/bundler/cli/remove.rb | 17 | |
| -rw-r--r-- | lib/bundler/cli/show.rb | 75 | |
| -rw-r--r-- | lib/bundler/cli/update.rb | 122 | |
| -rw-r--r-- | lib/bundler/cli/viz.rb | 31 | |
| -rw-r--r-- | lib/bundler/compact_index_client.rb | 119 | |
| -rw-r--r-- | lib/bundler/compact_index_client/cache.rb | 101 | |
| -rw-r--r-- | lib/bundler/compact_index_client/gem_parser.rb | 28 | |
| -rw-r--r-- | lib/bundler/compact_index_client/updater.rb | 117 | |
| -rw-r--r-- | lib/bundler/constants.rb | 7 | |
| -rw-r--r-- | lib/bundler/current_ruby.rb | 108 | |
| -rw-r--r-- | lib/bundler/definition.rb | 961 | |
| -rw-r--r-- | lib/bundler/dependency.rb | 97 | |
| -rw-r--r-- | lib/bundler/deployment.rb | 69 | |
| -rw-r--r-- | lib/bundler/deprecate.rb | 44 | |
| -rw-r--r-- | lib/bundler/digest.rb | 71 | |
| -rw-r--r-- | lib/bundler/dsl.rb | 583 | |
| -rw-r--r-- | lib/bundler/endpoint_specification.rb | 143 | |
| -rw-r--r-- | lib/bundler/env.rb | 150 | |
| -rw-r--r-- | lib/bundler/environment_preserver.rb | 86 | |
| -rw-r--r-- | lib/bundler/errors.rb | 175 | |
| -rw-r--r-- | lib/bundler/feature_flag.rb | 53 | |
| -rw-r--r-- | lib/bundler/fetcher.rb | 320 | |
| -rw-r--r-- | lib/bundler/fetcher/base.rb | 50 | |
| -rw-r--r-- | lib/bundler/fetcher/compact_index.rb | 133 | |
| -rw-r--r-- | lib/bundler/fetcher/dependency.rb | 78 | |
| -rw-r--r-- | lib/bundler/fetcher/downloader.rb | 89 | |
| -rw-r--r-- | lib/bundler/fetcher/index.rb | 25 | |
| -rw-r--r-- | lib/bundler/force_platform.rb | 18 | |
| -rw-r--r-- | lib/bundler/friendly_errors.rb | 126 | |
| -rw-r--r-- | lib/bundler/gem_helper.rb | 237 | |
| -rw-r--r-- | lib/bundler/gem_helpers.rb | 117 | |
| -rw-r--r-- | lib/bundler/gem_tasks.rb | 7 | |
| -rw-r--r-- | lib/bundler/gem_version_promoter.rb | 145 | |
| -rw-r--r-- | lib/bundler/graph.rb | 152 | |
| -rw-r--r-- | lib/bundler/index.rb | 175 | |
| -rw-r--r-- | lib/bundler/injector.rb | 287 | |
| -rw-r--r-- | lib/bundler/inline.rb | 73 | |
| -rw-r--r-- | lib/bundler/installer.rb | 267 | |
| -rw-r--r-- | lib/bundler/installer/gem_installer.rb | 84 | |
| -rw-r--r-- | lib/bundler/installer/parallel_installer.rb | 220 | |
| -rw-r--r-- | lib/bundler/installer/standalone.rb | 103 | |
| -rw-r--r-- | lib/bundler/lazy_specification.rb | 159 | |
| -rw-r--r-- | lib/bundler/lockfile_generator.rb | 95 | |
| -rw-r--r-- | lib/bundler/lockfile_parser.rb | 225 | |
| -rw-r--r-- | lib/bundler/man/.document | 1 | |
| -rw-r--r-- | lib/bundler/man/bundle-add.1 | 82 | |
| -rw-r--r-- | lib/bundler/man/bundle-add.1.ronn | 58 | |
| -rw-r--r-- | lib/bundler/man/bundle-binstubs.1 | 42 | |
| -rw-r--r-- | lib/bundler/man/bundle-binstubs.1.ronn | 41 | |
| -rw-r--r-- | lib/bundler/man/bundle-cache.1 | 61 | |
| -rw-r--r-- | lib/bundler/man/bundle-cache.1.ronn | 79 | |
| -rw-r--r-- | lib/bundler/man/bundle-check.1 | 31 | |
| -rw-r--r-- | lib/bundler/man/bundle-check.1.ronn | 26 | |
| -rw-r--r-- | lib/bundler/man/bundle-clean.1 | 24 | |
| -rw-r--r-- | lib/bundler/man/bundle-clean.1.ronn | 18 | |
| -rw-r--r-- | lib/bundler/man/bundle-config.1 | 512 | |
| -rw-r--r-- | lib/bundler/man/bundle-config.1.ronn | 405 | |
| -rw-r--r-- | lib/bundler/man/bundle-console.1 | 53 | |
| -rw-r--r-- | lib/bundler/man/bundle-console.1.ronn | 44 | |
| -rw-r--r-- | lib/bundler/man/bundle-doctor.1 | 44 | |
| -rw-r--r-- | lib/bundler/man/bundle-doctor.1.ronn | 33 | |
| -rw-r--r-- | lib/bundler/man/bundle-exec.1 | 165 | |
| -rw-r--r-- | lib/bundler/man/bundle-exec.1.ronn | 152 | |
| -rw-r--r-- | lib/bundler/man/bundle-gem.1 | 105 | |
| -rw-r--r-- | lib/bundler/man/bundle-gem.1.ronn | 117 | |
| -rw-r--r-- | lib/bundler/man/bundle-help.1 | 13 | |
| -rw-r--r-- | lib/bundler/man/bundle-help.1.ronn | 12 | |
| -rw-r--r-- | lib/bundler/man/bundle-info.1 | 20 | |
| -rw-r--r-- | lib/bundler/man/bundle-info.1.ronn | 17 | |
| -rw-r--r-- | lib/bundler/man/bundle-init.1 | 29 | |
| -rw-r--r-- | lib/bundler/man/bundle-init.1.ronn | 31 | |
| -rw-r--r-- | lib/bundler/man/bundle-inject.1 | 36 | |
| -rw-r--r-- | lib/bundler/man/bundle-inject.1.ronn | 24 | |
| -rw-r--r-- | lib/bundler/man/bundle-install.1 | 313 | |
| -rw-r--r-- | lib/bundler/man/bundle-install.1.ronn | 382 | |
| -rw-r--r-- | lib/bundler/man/bundle-list.1 | 50 | |
| -rw-r--r-- | lib/bundler/man/bundle-list.1.ronn | 33 | |
| -rw-r--r-- | lib/bundler/man/bundle-lock.1 | 84 | |
| -rw-r--r-- | lib/bundler/man/bundle-lock.1.ronn | 94 | |
| -rw-r--r-- | lib/bundler/man/bundle-open.1 | 52 | |
| -rw-r--r-- | lib/bundler/man/bundle-open.1.ronn | 27 | |
| -rw-r--r-- | lib/bundler/man/bundle-outdated.1 | 152 | |
| -rw-r--r-- | lib/bundler/man/bundle-outdated.1.ronn | 105 | |
| -rw-r--r-- | lib/bundler/man/bundle-platform.1 | 71 | |
| -rw-r--r-- | lib/bundler/man/bundle-platform.1.ronn | 49 | |
| -rw-r--r-- | lib/bundler/man/bundle-plugin.1 | 81 | |
| -rw-r--r-- | lib/bundler/man/bundle-plugin.1.ronn | 59 | |
| -rw-r--r-- | lib/bundler/man/bundle-pristine.1 | 34 | |
| -rw-r--r-- | lib/bundler/man/bundle-pristine.1.ronn | 34 | |
| -rw-r--r-- | lib/bundler/man/bundle-remove.1 | 31 | |
| -rw-r--r-- | lib/bundler/man/bundle-remove.1.ronn | 23 | |
| -rw-r--r-- | lib/bundler/man/bundle-show.1 | 23 | |
| -rw-r--r-- | lib/bundler/man/bundle-show.1.ronn | 21 | |
| -rw-r--r-- | lib/bundler/man/bundle-update.1 | 394 | |
| -rw-r--r-- | lib/bundler/man/bundle-update.1.ronn | 351 | |
| -rw-r--r-- | lib/bundler/man/bundle-version.1 | 35 | |
| -rw-r--r-- | lib/bundler/man/bundle-version.1.ronn | 24 | |
| -rw-r--r-- | lib/bundler/man/bundle-viz.1 | 42 | |
| -rw-r--r-- | lib/bundler/man/bundle-viz.1.ronn | 32 | |
| -rw-r--r-- | lib/bundler/man/bundle.1 | 141 | |
| -rw-r--r-- | lib/bundler/man/bundle.1.ronn | 116 | |
| -rw-r--r-- | lib/bundler/man/gemfile.5 | 736 | |
| -rw-r--r-- | lib/bundler/man/gemfile.5.ronn | 543 | |
| -rw-r--r-- | lib/bundler/man/index.txt | 29 | |
| -rw-r--r-- | lib/bundler/match_metadata.rb | 13 | |
| -rw-r--r-- | lib/bundler/match_platform.rb | 23 | |
| -rw-r--r-- | lib/bundler/match_remote_metadata.rb | 29 | |
| -rw-r--r-- | lib/bundler/mirror.rb | 221 | |
| -rw-r--r-- | lib/bundler/plugin.rb | 352 | |
| -rw-r--r-- | lib/bundler/plugin/api.rb | 81 | |
| -rw-r--r-- | lib/bundler/plugin/api/source.rb | 320 | |
| -rw-r--r-- | lib/bundler/plugin/dsl.rb | 53 | |
| -rw-r--r-- | lib/bundler/plugin/events.rb | 61 | |
| -rw-r--r-- | lib/bundler/plugin/index.rb | 185 | |
| -rw-r--r-- | lib/bundler/plugin/installer.rb | 112 | |
| -rw-r--r-- | lib/bundler/plugin/installer/git.rb | 34 | |
| -rw-r--r-- | lib/bundler/plugin/installer/rubygems.rb | 19 | |
| -rw-r--r-- | lib/bundler/plugin/source_list.rb | 31 | |
| -rw-r--r-- | lib/bundler/process_lock.rb | 24 | |
| -rw-r--r-- | lib/bundler/remote_specification.rb | 117 | |
| -rw-r--r-- | lib/bundler/resolver.rb | 427 | |
| -rw-r--r-- | lib/bundler/resolver/base.rb | 107 | |
| -rw-r--r-- | lib/bundler/resolver/candidate.rb | 94 | |
| -rw-r--r-- | lib/bundler/resolver/incompatibility.rb | 15 | |
| -rw-r--r-- | lib/bundler/resolver/package.rb | 72 | |
| -rw-r--r-- | lib/bundler/resolver/root.rb | 25 | |
| -rw-r--r-- | lib/bundler/resolver/spec_group.rb | 82 | |
| -rw-r--r-- | lib/bundler/retry.rb | 66 | |
| -rw-r--r-- | lib/bundler/ruby_dsl.rb | 24 | |
| -rw-r--r-- | lib/bundler/ruby_version.rb | 124 | |
| -rw-r--r-- | lib/bundler/rubygems_ext.rb | 355 | |
| -rw-r--r-- | lib/bundler/rubygems_gem_installer.rb | 172 | |
| -rw-r--r-- | lib/bundler/rubygems_integration.rb | 562 | |
| -rw-r--r-- | lib/bundler/runtime.rb | 307 | |
| -rw-r--r-- | lib/bundler/safe_marshal.rb | 31 | |
| -rw-r--r-- | lib/bundler/self_manager.rb | 168 | |
| -rw-r--r-- | lib/bundler/settings.rb | 507 | |
| -rw-r--r-- | lib/bundler/settings/validator.rb | 102 | |
| -rw-r--r-- | lib/bundler/setup.rb | 30 | |
| -rw-r--r-- | lib/bundler/shared_helpers.rb | 343 | |
| -rw-r--r-- | lib/bundler/similarity_detector.rb | 63 | |
| -rw-r--r-- | lib/bundler/source.rb | 114 | |
| -rw-r--r-- | lib/bundler/source/gemspec.rb | 18 | |
| -rw-r--r-- | lib/bundler/source/git.rb | 379 | |
| -rw-r--r-- | lib/bundler/source/git/git_proxy.rb | 431 | |
| -rw-r--r-- | lib/bundler/source/metadata.rb | 62 | |
| -rw-r--r-- | lib/bundler/source/path.rb | 260 | |
| -rw-r--r-- | lib/bundler/source/path/installer.rb | 53 | |
| -rw-r--r-- | lib/bundler/source/rubygems.rb | 512 | |
| -rw-r--r-- | lib/bundler/source/rubygems/remote.rb | 68 | |
| -rw-r--r-- | lib/bundler/source/rubygems_aggregate.rb | 68 | |
| -rw-r--r-- | lib/bundler/source_list.rb | 227 | |
| -rw-r--r-- | lib/bundler/source_map.rb | 71 | |
| -rw-r--r-- | lib/bundler/spec_set.rb | 216 | |
| -rw-r--r-- | lib/bundler/stub_specification.rb | 116 | |
| -rw-r--r-- | lib/bundler/templates/.document | 1 | |
| -rw-r--r-- | lib/bundler/templates/Executable | 27 | |
| -rw-r--r-- | lib/bundler/templates/Executable.bundler | 109 | |
| -rw-r--r-- | lib/bundler/templates/Executable.standalone | 14 | |
| -rw-r--r-- | lib/bundler/templates/Gemfile | 5 | |
| -rw-r--r-- | lib/bundler/templates/newgem/CHANGELOG.md.tt | 5 | |
| -rw-r--r-- | lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt | 84 | |
| -rw-r--r-- | lib/bundler/templates/newgem/Cargo.toml.tt | 7 | |
| -rw-r--r-- | lib/bundler/templates/newgem/Gemfile.tt | 26 | |
| -rw-r--r-- | lib/bundler/templates/newgem/LICENSE.txt.tt | 21 | |
| -rw-r--r-- | lib/bundler/templates/newgem/README.md.tt | 45 | |
| -rw-r--r-- | lib/bundler/templates/newgem/Rakefile.tt | 67 | |
| -rw-r--r-- | lib/bundler/templates/newgem/bin/console.tt | 11 | |
| -rw-r--r-- | lib/bundler/templates/newgem/bin/setup.tt | 8 | |
| -rw-r--r-- | lib/bundler/templates/newgem/circleci/config.yml.tt | 25 | |
| -rw-r--r-- | lib/bundler/templates/newgem/exe/newgem.tt | 3 | |
| -rw-r--r-- | lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt | 15 | |
| -rw-r--r-- | lib/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt | 10 | |
| -rw-r--r-- | lib/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt | 6 | |
| -rw-r--r-- | lib/bundler/templates/newgem/ext/newgem/newgem.c.tt | 9 | |
| -rw-r--r-- | lib/bundler/templates/newgem/ext/newgem/newgem.h.tt | 6 | |
| -rw-r--r-- | lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt | 12 | |
| -rw-r--r-- | lib/bundler/templates/newgem/github/workflows/main.yml.tt | 37 | |
| -rw-r--r-- | lib/bundler/templates/newgem/gitignore.tt | 23 | |
| -rw-r--r-- | lib/bundler/templates/newgem/gitlab-ci.yml.tt | 18 | |
| -rw-r--r-- | lib/bundler/templates/newgem/lib/newgem.rb.tt | 15 | |
| -rw-r--r-- | lib/bundler/templates/newgem/lib/newgem/version.rb.tt | 9 | |
| -rw-r--r-- | lib/bundler/templates/newgem/newgem.gemspec.tt | 51 | |
| -rw-r--r-- | lib/bundler/templates/newgem/rspec.tt | 3 | |
| -rw-r--r-- | lib/bundler/templates/newgem/rubocop.yml.tt | 13 | |
| -rw-r--r-- | lib/bundler/templates/newgem/sig/newgem.rbs.tt | 8 | |
| -rw-r--r-- | lib/bundler/templates/newgem/spec/newgem_spec.rb.tt | 11 | |
| -rw-r--r-- | lib/bundler/templates/newgem/spec/spec_helper.rb.tt | 15 | |
| -rw-r--r-- | lib/bundler/templates/newgem/standard.yml.tt | 3 | |
| -rw-r--r-- | lib/bundler/templates/newgem/test/minitest/test_helper.rb.tt | 6 | |
| -rw-r--r-- | lib/bundler/templates/newgem/test/minitest/test_newgem.rb.tt | 13 | |
| -rw-r--r-- | lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt | 15 | |
| -rw-r--r-- | lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt | 6 | |
| -rw-r--r-- | lib/bundler/ui.rb | 9 | |
| -rw-r--r-- | lib/bundler/ui/rg_proxy.rb | 19 | |
| -rw-r--r-- | lib/bundler/ui/shell.rb | 165 | |
| -rw-r--r-- | lib/bundler/ui/silent.rb | 85 | |
| -rw-r--r-- | lib/bundler/uri_credentials_filter.rb | 43 | |
| -rw-r--r-- | lib/bundler/uri_normalizer.rb | 23 | |
| -rw-r--r-- | lib/bundler/vendor/.document | 1 | |
| -rw-r--r-- | lib/bundler/vendor/connection_pool/lib/connection_pool.rb | 128 | |
| -rw-r--r-- | lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb | 174 | |
| -rw-r--r-- | lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb | 3 | |
| -rw-r--r-- | lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb | 56 | |
| -rw-r--r-- | lib/bundler/vendor/fileutils/lib/fileutils.rb | 2706 | |
| -rw-r--r-- | lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb | 1073 | |
| -rw-r--r-- | lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb | 40 | |
| -rw-r--r-- | lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb | 53 | |
| -rw-r--r-- | lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb | 79 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub.rb | 31 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb | 20 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb | 189 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb | 182 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb | 150 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb | 43 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb | 121 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb | 45 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb | 19 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb | 60 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/term.rb | 105 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb | 3 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb | 129 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb | 411 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb | 248 | |
| -rw-r--r-- | lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb | 178 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor.rb | 516 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/actions.rb | 340 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/actions/create_file.rb | 104 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/actions/create_link.rb | 61 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/actions/directory.rb | 108 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb | 143 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb | 375 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb | 119 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/base.rb | 699 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/command.rb | 142 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb | 103 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/error.rb | 115 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/group.rb | 281 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/invocation.rb | 178 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/line_editor.rb | 17 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb | 37 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb | 88 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/nested_context.rb | 29 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/parser.rb | 4 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/parser/argument.rb | 70 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/parser/arguments.rb | 179 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/parser/option.rb | 159 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/parser/options.rb | 255 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/rake_compat.rb | 72 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/runner.rb | 325 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/shell.rb | 81 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/shell/basic.rb | 512 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/shell/color.rb | 157 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/shell/html.rb | 126 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/util.rb | 284 | |
| -rw-r--r-- | lib/bundler/vendor/thor/lib/thor/version.rb | 3 | |
| -rw-r--r-- | lib/bundler/vendor/tsort/lib/tsort.rb | 452 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri.rb | 104 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/common.rb | 729 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/file.rb | 100 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/ftp.rb | 267 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/generic.rb | 1587 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/http.rb | 125 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/https.rb | 23 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/ldap.rb | 261 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/ldaps.rb | 22 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/mailto.rb | 293 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb | 539 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb | 119 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/version.rb | 6 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/ws.rb | 83 | |
| -rw-r--r-- | lib/bundler/vendor/uri/lib/uri/wss.rb | 23 | |
| -rw-r--r-- | lib/bundler/vendored_fileutils.rb | 4 | |
| -rw-r--r-- | lib/bundler/vendored_persistent.rb | 15 | |
| -rw-r--r-- | lib/bundler/vendored_pub_grub.rb | 4 | |
| -rw-r--r-- | lib/bundler/vendored_thor.rb | 8 | |
| -rw-r--r-- | lib/bundler/vendored_tsort.rb | 4 | |
| -rw-r--r-- | lib/bundler/vendored_uri.rb | 4 | |
| -rw-r--r-- | lib/bundler/version.rb | 13 | |
| -rw-r--r-- | lib/bundler/vlad.rb | 17 | |
| -rw-r--r-- | lib/bundler/worker.rb | 117 | |
| -rw-r--r-- | lib/bundler/yaml_serializer.rb | 89 | |
| -rw-r--r-- | lib/cgi.rb | 100 | |
| -rw-r--r-- | lib/cgi/.document | 1 | |
| -rw-r--r-- | lib/cgi/cgi.gemspec | 42 | |
| -rw-r--r-- | lib/cgi/cookie.rb | 241 | |
| -rw-r--r-- | lib/cgi/core.rb | 511 | |
| -rw-r--r-- | lib/cgi/html.rb | 328 | |
| -rw-r--r-- | lib/cgi/session.rb | 133 | |
| -rw-r--r-- | lib/cgi/session/pstore.rb | 33 | |
| -rw-r--r-- | lib/cgi/util.rb | 204 | |
| -rw-r--r-- | lib/cmath.rb | 254 | |
| -rw-r--r-- | lib/complex.rb | 28 | |
| -rw-r--r-- | lib/csv.rb | 4357 | |
| -rw-r--r-- | lib/csv/core_ext/array.rb | 9 | |
| -rw-r--r-- | lib/csv/core_ext/string.rb | 9 | |
| -rw-r--r-- | lib/csv/csv.gemspec | 64 | |
| -rw-r--r-- | lib/csv/delete_suffix.rb | 18 | |
| -rw-r--r-- | lib/csv/fields_converter.rb | 89 | |
| -rw-r--r-- | lib/csv/input_record_separator.rb | 18 | |
| -rw-r--r-- | lib/csv/match_p.rb | 20 | |
| -rw-r--r-- | lib/csv/parser.rb | 1289 | |
| -rw-r--r-- | lib/csv/row.rb | 757 | |
| -rw-r--r-- | lib/csv/table.rb | 1055 | |
| -rw-r--r-- | lib/csv/version.rb | 6 | |
| -rw-r--r-- | lib/csv/writer.rb | 210 | |
| -rw-r--r-- | lib/date.rb | 1841 | |
| -rw-r--r-- | lib/date/delta.rb | 431 | |
| -rw-r--r-- | lib/date/delta/parser.rb | 301 | |
| -rw-r--r-- | lib/date/delta/parser.ry | 84 | |
| -rw-r--r-- | lib/date/format.rb | 1311 | |
| -rw-r--r-- | lib/debug.rb | 907 | |
| -rw-r--r-- | lib/delegate.rb | 417 | |
| -rw-r--r-- | lib/delegate/delegate.gemspec | 29 | |
| -rw-r--r-- | lib/did_you_mean.rb | 155 | |
| -rw-r--r-- | lib/did_you_mean/core_ext/name_error.rb | 57 | |
| -rw-r--r-- | lib/did_you_mean/did_you_mean.gemspec | 27 | |
| -rw-r--r-- | lib/did_you_mean/experimental.rb | 2 | |
| -rw-r--r-- | lib/did_you_mean/formatter.rb | 44 | |
| -rw-r--r-- | lib/did_you_mean/formatters/plain_formatter.rb | 4 | |
| -rw-r--r-- | lib/did_you_mean/formatters/verbose_formatter.rb | 10 | |
| -rw-r--r-- | lib/did_you_mean/jaro_winkler.rb | 87 | |
| -rw-r--r-- | lib/did_you_mean/levenshtein.rb | 57 | |
| -rw-r--r-- | lib/did_you_mean/spell_checker.rb | 46 | |
| -rw-r--r-- | lib/did_you_mean/spell_checkers/key_error_checker.rb | 20 | |
| -rw-r--r-- | lib/did_you_mean/spell_checkers/method_name_checker.rb | 79 | |
| -rw-r--r-- | lib/did_you_mean/spell_checkers/name_error_checkers.rb | 20 | |
| -rw-r--r-- | lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb | 49 | |
| -rw-r--r-- | lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb | 85 | |
| -rw-r--r-- | lib/did_you_mean/spell_checkers/null_checker.rb | 6 | |
| -rw-r--r-- | lib/did_you_mean/spell_checkers/pattern_key_name_checker.rb | 20 | |
| -rw-r--r-- | lib/did_you_mean/spell_checkers/require_path_checker.rb | 39 | |
| -rw-r--r-- | lib/did_you_mean/tree_spell_checker.rb | 109 | |
| -rw-r--r-- | lib/did_you_mean/verbose.rb | 2 | |
| -rw-r--r-- | lib/did_you_mean/version.rb | 3 | |
| -rw-r--r-- | lib/drb.rb | 1 | |
| -rw-r--r-- | lib/drb/acl.rb | 177 | |
| -rw-r--r-- | lib/drb/drb.gemspec | 43 | |
| -rw-r--r-- | lib/drb/drb.rb | 740 | |
| -rw-r--r-- | lib/drb/eq.rb | 3 | |
| -rw-r--r-- | lib/drb/extserv.rb | 37 | |
| -rw-r--r-- | lib/drb/extservm.rb | 39 | |
| -rw-r--r-- | lib/drb/gw.rb | 45 | |
| -rw-r--r-- | lib/drb/invokemethod.rb | 9 | |
| -rw-r--r-- | lib/drb/observer.rb | 6 | |
| -rw-r--r-- | lib/drb/ssl.rb | 334 | |
| -rw-r--r-- | lib/drb/timeridconv.rb | 112 | |
| -rw-r--r-- | lib/drb/unix.rb | 64 | |
| -rw-r--r-- | lib/drb/version.rb | 3 | |
| -rw-r--r-- | lib/drb/weakidconv.rb | 59 | |
| -rw-r--r-- | lib/e2mmap.rb | 172 | |
| -rw-r--r-- | lib/erb.gemspec | 38 | |
| -rw-r--r-- | lib/erb.rb | 650 | |
| -rw-r--r-- | lib/erb/compiler.rb | 471 | |
| -rw-r--r-- | lib/erb/def_method.rb | 46 | |
| -rw-r--r-- | lib/erb/util.rb | 62 | |
| -rw-r--r-- | lib/erb/version.rb | 5 | |
| -rw-r--r-- | lib/error_highlight.rb | 2 | |
| -rw-r--r-- | lib/error_highlight/base.rb | 514 | |
| -rw-r--r-- | lib/error_highlight/core_ext.rb | 47 | |
| -rw-r--r-- | lib/error_highlight/error_highlight.gemspec | 27 | |
| -rw-r--r-- | lib/error_highlight/formatter.rb | 23 | |
| -rw-r--r-- | lib/error_highlight/version.rb | 3 | |
| -rw-r--r-- | lib/fileutils.gemspec | 31 | |
| -rw-r--r-- | lib/fileutils.rb | 2457 | |
| -rw-r--r-- | lib/find.gemspec | 24 | |
| -rw-r--r-- | lib/find.rb | 53 | |
| -rw-r--r-- | lib/forwardable.rb | 315 | |
| -rw-r--r-- | lib/forwardable/forwardable.gemspec | 26 | |
| -rw-r--r-- | lib/forwardable/impl.rb | 17 | |
| -rw-r--r-- | lib/getoptlong.rb | 805 | |
| -rw-r--r-- | lib/getoptlong/getoptlong.gemspec | 30 | |
| -rw-r--r-- | lib/gserver.rb | 253 | |
| -rw-r--r-- | lib/ipaddr.gemspec | 36 | |
| -rw-r--r-- | lib/ipaddr.rb | 763 | |
| -rw-r--r-- | lib/irb.rb | 1033 | |
| -rw-r--r-- | lib/irb/.document | 1 | |
| -rw-r--r-- | lib/irb/cmd/backtrace.rb | 21 | |
| -rw-r--r-- | lib/irb/cmd/break.rb | 21 | |
| -rw-r--r-- | lib/irb/cmd/catch.rb | 21 | |
| -rw-r--r-- | lib/irb/cmd/chws.rb | 26 | |
| -rw-r--r-- | lib/irb/cmd/continue.rb | 17 | |
| -rw-r--r-- | lib/irb/cmd/debug.rb | 136 | |
| -rw-r--r-- | lib/irb/cmd/delete.rb | 17 | |
| -rw-r--r-- | lib/irb/cmd/edit.rb | 61 | |
| -rw-r--r-- | lib/irb/cmd/finish.rb | 17 | |
| -rw-r--r-- | lib/irb/cmd/fork.rb | 42 | |
| -rw-r--r-- | lib/irb/cmd/help.rb | 40 | |
| -rw-r--r-- | lib/irb/cmd/info.rb | 21 | |
| -rw-r--r-- | lib/irb/cmd/irb_info.rb | 37 | |
| -rw-r--r-- | lib/irb/cmd/load.rb | 88 | |
| -rw-r--r-- | lib/irb/cmd/ls.rb | 116 | |
| -rw-r--r-- | lib/irb/cmd/measure.rb | 48 | |
| -rw-r--r-- | lib/irb/cmd/next.rb | 17 | |
| -rw-r--r-- | lib/irb/cmd/nop.rb | 49 | |
| -rw-r--r-- | lib/irb/cmd/pushws.rb | 35 | |
| -rw-r--r-- | lib/irb/cmd/show_cmds.rb | 39 | |
| -rw-r--r-- | lib/irb/cmd/show_source.rb | 112 | |
| -rw-r--r-- | lib/irb/cmd/step.rb | 17 | |
| -rw-r--r-- | lib/irb/cmd/subirb.rb | 53 | |
| -rw-r--r-- | lib/irb/cmd/whereami.rb | 25 | |
| -rw-r--r-- | lib/irb/color.rb | 266 | |
| -rw-r--r-- | lib/irb/color_printer.rb | 50 | |
| -rw-r--r-- | lib/irb/completion.rb | 612 | |
| -rw-r--r-- | lib/irb/context.rb | 525 | |
| -rw-r--r-- | lib/irb/easter-egg.rb | 138 | |
| -rw-r--r-- | lib/irb/ext/change-ws.rb | 46 | |
| -rw-r--r-- | lib/irb/ext/history.rb | 120 | |
| -rw-r--r-- | lib/irb/ext/loader.rb | 166 | |
| -rw-r--r-- | lib/irb/ext/math-mode.rb | 36 | |
| -rw-r--r-- | lib/irb/ext/multi-irb.rb | 238 | |
| -rw-r--r-- | lib/irb/ext/save-history.rb | 115 | |
| -rw-r--r-- | lib/irb/ext/tracer.rb | 54 | |
| -rw-r--r-- | lib/irb/ext/use-loader.rb | 47 | |
| -rw-r--r-- | lib/irb/ext/workspaces.rb | 41 | |
| -rw-r--r-- | lib/irb/extend-command.rb | 439 | |
| -rw-r--r-- | lib/irb/frame.rb | 40 | |
| -rw-r--r-- | lib/irb/help.rb | 23 | |
| -rw-r--r-- | lib/irb/init.rb | 423 | |
| -rw-r--r-- | lib/irb/input-method.rb | 423 | |
| -rw-r--r-- | lib/irb/inspector.rb | 151 | |
| -rw-r--r-- | lib/irb/irb.gemspec | 40 | |
| -rw-r--r-- | lib/irb/lc/error.rb | 67 | |
| -rw-r--r-- | lib/irb/lc/help-message | 89 | |
| -rw-r--r-- | lib/irb/lc/ja/encoding_aliases.rb | 5 | |
| -rw-r--r-- | lib/irb/lc/ja/error.rb | 68 | |
| -rw-r--r-- | lib/irb/lc/ja/help-message | 48 | |
| -rw-r--r-- | lib/irb/locale.rb | 174 | |
| -rw-r--r-- | lib/irb/magic-file.rb | 6 | |
| -rw-r--r-- | lib/irb/notifier.rb | 194 | |
| -rw-r--r-- | lib/irb/output-method.rb | 59 | |
| -rw-r--r-- | lib/irb/ruby-lex.rb | 1805 | |
| -rw-r--r-- | lib/irb/ruby-token.rb | 265 | |
| -rw-r--r-- | lib/irb/ruby_logo.aa | 37 | |
| -rw-r--r-- | lib/irb/slex.rb | 282 | |
| -rw-r--r-- | lib/irb/src_encoding.rb | 7 | |
| -rw-r--r-- | lib/irb/version.rb | 8 | |
| -rw-r--r-- | lib/irb/workspace.rb | 202 | |
| -rw-r--r-- | lib/irb/ws-for-case-2.rb | 3 | |
| -rw-r--r-- | lib/irb/xmp.rb | 119 | |
| -rw-r--r-- | lib/logger.rb | 1117 | |
| -rw-r--r-- | lib/logger/errors.rb | 9 | |
| -rw-r--r-- | lib/logger/formatter.rb | 36 | |
| -rw-r--r-- | lib/logger/log_device.rb | 207 | |
| -rw-r--r-- | lib/logger/logger.gemspec | 26 | |
| -rw-r--r-- | lib/logger/period.rb | 47 | |
| -rw-r--r-- | lib/logger/severity.rb | 19 | |
| -rw-r--r-- | lib/logger/version.rb | 5 | |
| -rw-r--r-- | lib/mathn.rb | 210 | |
| -rw-r--r-- | lib/matrix.rb | 1536 | |
| -rw-r--r-- | lib/minitest/autorun.rb | 11 | |
| -rw-r--r-- | lib/minitest/mock.rb | 38 | |
| -rw-r--r-- | lib/minitest/spec.rb | 325 | |
| -rw-r--r-- | lib/minitest/unit.rb | 816 | |
| -rw-r--r-- | lib/mkmf.rb | 4249 | |
| -rw-r--r-- | lib/monitor.rb | 277 | |
| -rw-r--r-- | lib/mutex_m.gemspec | 27 | |
| -rw-r--r-- | lib/mutex_m.rb | 83 | |
| -rw-r--r-- | lib/net/.document | 8 | |
| -rw-r--r-- | lib/net/ftp.rb | 985 | |
| -rw-r--r-- | lib/net/http.rb | 3813 | |
| -rw-r--r-- | lib/net/http/backward.rb | 40 | |
| -rw-r--r-- | lib/net/http/exceptions.rb | 34 | |
| -rw-r--r-- | lib/net/http/generic_request.rb | 414 | |
| -rw-r--r-- | lib/net/http/header.rb | 981 | |
| -rw-r--r-- | lib/net/http/net-http.gemspec | 39 | |
| -rw-r--r-- | lib/net/http/proxy_delta.rb | 17 | |
| -rw-r--r-- | lib/net/http/request.rb | 88 | |
| -rw-r--r-- | lib/net/http/requests.rb | 425 | |
| -rw-r--r-- | lib/net/http/response.rb | 738 | |
| -rw-r--r-- | lib/net/http/responses.rb | 1174 | |
| -rw-r--r-- | lib/net/http/status.rb | 84 | |
| -rw-r--r-- | lib/net/https.rb | 85 | |
| -rw-r--r-- | lib/net/imap.rb | 3634 | |
| -rw-r--r-- | lib/net/net-protocol.gemspec | 33 | |
| -rw-r--r-- | lib/net/pop.rb | 1000 | |
| -rw-r--r-- | lib/net/protocol.rb | 246 | |
| -rw-r--r-- | lib/net/smtp.rb | 1026 | |
| -rw-r--r-- | lib/net/telnet.rb | 759 | |
| -rw-r--r-- | lib/observer.rb | 110 | |
| -rw-r--r-- | lib/observer/observer.gemspec | 32 | |
| -rw-r--r-- | lib/open-uri.gemspec | 25 | |
| -rw-r--r-- | lib/open-uri.rb | 376 | |
| -rw-r--r-- | lib/open3.rb | 211 | |
| -rw-r--r-- | lib/open3/open3.gemspec | 33 | |
| -rw-r--r-- | lib/open3/version.rb | 3 | |
| -rw-r--r-- | lib/optionparser.rb | 2 | |
| -rw-r--r-- | lib/optparse.rb | 991 | |
| -rw-r--r-- | lib/optparse/ac.rb | 54 | |
| -rw-r--r-- | lib/optparse/date.rb | 3 | |
| -rw-r--r-- | lib/optparse/kwargs.rb | 22 | |
| -rw-r--r-- | lib/optparse/optparse.gemspec | 30 | |
| -rw-r--r-- | lib/optparse/shellwords.rb | 3 | |
| -rw-r--r-- | lib/optparse/time.rb | 3 | |
| -rw-r--r-- | lib/optparse/uri.rb | 3 | |
| -rw-r--r-- | lib/optparse/version.rb | 3 | |
| -rw-r--r-- | lib/ostruct.rb | 478 | |
| -rw-r--r-- | lib/ostruct/ostruct.gemspec | 27 | |
| -rw-r--r-- | lib/pp.gemspec | 27 | |
| -rw-r--r-- | lib/pp.rb | 335 | |
| -rw-r--r-- | lib/prettyprint.gemspec | 22 | |
| -rw-r--r-- | lib/prettyprint.rb | 247 | |
| -rw-r--r-- | lib/prime.rb | 495 | |
| -rw-r--r-- | lib/profile.rb | 10 | |
| -rw-r--r-- | lib/profiler.rb | 59 | |
| -rw-r--r-- | lib/pstore.rb | 721 | |
| -rw-r--r-- | lib/pstore/pstore.gemspec | 32 | |
| -rw-r--r-- | lib/racc.rb | 6 | |
| -rw-r--r-- | lib/racc/compat.rb | 33 | |
| -rw-r--r-- | lib/racc/debugflags.rb | 60 | |
| -rw-r--r-- | lib/racc/exception.rb | 16 | |
| -rw-r--r-- | lib/racc/grammar.rb | 1118 | |
| -rw-r--r-- | lib/racc/grammarfileparser.rb | 561 | |
| -rw-r--r-- | lib/racc/info.rb | 17 | |
| -rw-r--r-- | lib/racc/iset.rb | 92 | |
| -rw-r--r-- | lib/racc/logfilegenerator.rb | 212 | |
| -rw-r--r-- | lib/racc/parser-text.rb | 637 | |
| -rw-r--r-- | lib/racc/parser.rb | 315 | |
| -rw-r--r-- | lib/racc/parserfilegenerator.rb | 468 | |
| -rw-r--r-- | lib/racc/racc.gemspec | 58 | |
| -rw-r--r-- | lib/racc/sourcetext.rb | 35 | |
| -rw-r--r-- | lib/racc/state.rb | 972 | |
| -rw-r--r-- | lib/racc/statetransitiontable.rb | 311 | |
| -rw-r--r-- | lib/racc/static.rb | 5 | |
| -rw-r--r-- | lib/rake.rb | 2485 | |
| -rw-r--r-- | lib/rake/classic_namespace.rb | 8 | |
| -rw-r--r-- | lib/rake/clean.rb | 31 | |
| -rw-r--r-- | lib/rake/contrib/compositepublisher.rb | 20 | |
| -rw-r--r-- | lib/rake/contrib/ftptools.rb | 151 | |
| -rw-r--r-- | lib/rake/contrib/publisher.rb | 73 | |
| -rw-r--r-- | lib/rake/contrib/rubyforgepublisher.rb | 16 | |
| -rw-r--r-- | lib/rake/contrib/sshpublisher.rb | 45 | |
| -rw-r--r-- | lib/rake/gempackagetask.rb | 95 | |
| -rw-r--r-- | lib/rake/loaders/makefile.rb | 38 | |
| -rw-r--r-- | lib/rake/packagetask.rb | 182 | |
| -rw-r--r-- | lib/rake/rake_test_loader.rb | 5 | |
| -rw-r--r-- | lib/rake/rdoctask.rb | 208 | |
| -rw-r--r-- | lib/rake/runtest.rb | 21 | |
| -rw-r--r-- | lib/rake/tasklib.rb | 21 | |
| -rw-r--r-- | lib/rake/testtask.rb | 150 | |
| -rw-r--r-- | lib/rake/win32.rb | 46 | |
| -rw-r--r-- | lib/random/formatter.rb | 245 | |
| -rw-r--r-- | lib/rational.rb | 23 | |
| -rw-r--r-- | lib/rbconfig/datadir.rb | 20 | |
| -rw-r--r-- | lib/rbconfig/obsolete.rb | 5 | |
| -rw-r--r-- | lib/rdoc.rb | 478 | |
| -rw-r--r-- | lib/rdoc/.document | 2 | |
| -rw-r--r-- | lib/rdoc/alias.rb | 82 | |
| -rw-r--r-- | lib/rdoc/anon_class.rb | 5 | |
| -rw-r--r-- | lib/rdoc/any_method.rb | 370 | |
| -rw-r--r-- | lib/rdoc/attr.rb | 200 | |
| -rw-r--r-- | lib/rdoc/class_module.rb | 721 | |
| -rw-r--r-- | lib/rdoc/code_object.rb | 315 | |
| -rw-r--r-- | lib/rdoc/code_objects.rb | 26 | |
| -rw-r--r-- | lib/rdoc/comment.rb | 250 | |
| -rw-r--r-- | lib/rdoc/constant.rb | 145 | |
| -rw-r--r-- | lib/rdoc/context.rb | 1085 | |
| -rw-r--r-- | lib/rdoc/context/section.rb | 234 | |
| -rw-r--r-- | lib/rdoc/cross_reference.rb | 226 | |
| -rw-r--r-- | lib/rdoc/encoding.rb | 136 | |
| -rw-r--r-- | lib/rdoc/erb_partial.rb | 19 | |
| -rw-r--r-- | lib/rdoc/erbio.rb | 42 | |
| -rw-r--r-- | lib/rdoc/extend.rb | 10 | |
| -rw-r--r-- | lib/rdoc/generator.rb | 51 | |
| -rw-r--r-- | lib/rdoc/generator/darkfish.rb | 1095 | |
| -rw-r--r-- | lib/rdoc/generator/json_index.rb | 300 | |
| -rw-r--r-- | lib/rdoc/generator/markup.rb | 129 | |
| -rw-r--r-- | lib/rdoc/generator/pot.rb | 98 | |
| -rw-r--r-- | lib/rdoc/generator/pot/message_extractor.rb | 68 | |
| -rw-r--r-- | lib/rdoc/generator/pot/po.rb | 84 | |
| -rw-r--r-- | lib/rdoc/generator/pot/po_entry.rb | 141 | |
| -rw-r--r-- | lib/rdoc/generator/ri.rb | 73 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_footer.rhtml | 5 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_head.rhtml | 20 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml | 19 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml | 33 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml | 15 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml | 9 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml | 15 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml | 15 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml | 12 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml | 11 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml | 32 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml | 11 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml | 14 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml | 11 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml | 39 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/class.rhtml | 174 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/classpage.rhtml | 297 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/css/fonts.css | 167 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/css/rdoc.css | 662 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/filepage.rhtml | 124 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf | bin | 0 -> 94668 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf | bin | 0 -> 94196 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf | bin | 0 -> 96184 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf | bin | 0 -> 95316 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf | bin | 0 -> 138268 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf | bin | 0 -> 138680 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/images/add.png | bin | 0 -> 733 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/images/arrow_up.png | bin | 0 -> 372 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/images/delete.png | bin | 0 -> 715 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/images/tag_blue.png | bin | 0 -> 1880 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/images/transparent.png | bin | 0 -> 97 bytes |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/index.rhtml | 86 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/js/darkfish.js | 134 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/js/jquery.js | 32 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/js/quicksearch.js | 114 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/js/search.js | 110 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/js/thickbox-compressed.js | 10 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/page.rhtml | 18 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/rdoc.css | 706 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml | 18 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/servlet_root.rhtml | 62 | |
| -rw-r--r-- | lib/rdoc/generator/template/darkfish/table_of_contents.rhtml | 58 | |
| -rw-r--r-- | lib/rdoc/generator/template/json_index/.document | 1 | |
| -rw-r--r-- | lib/rdoc/generator/template/json_index/js/navigation.js | 105 | |
| -rw-r--r-- | lib/rdoc/generator/template/json_index/js/searcher.js | 229 | |
| -rw-r--r-- | lib/rdoc/ghost_method.rb | 3 | |
| -rw-r--r-- | lib/rdoc/i18n.rb | 10 | |
| -rw-r--r-- | lib/rdoc/i18n/locale.rb | 102 | |
| -rw-r--r-- | lib/rdoc/i18n/text.rb | 126 | |
| -rw-r--r-- | lib/rdoc/include.rb | 61 | |
| -rw-r--r-- | lib/rdoc/known_classes.rb | 16 | |
| -rw-r--r-- | lib/rdoc/markdown.rb | 16783 | |
| -rw-r--r-- | lib/rdoc/markdown/entities.rb | 2132 | |
| -rw-r--r-- | lib/rdoc/markdown/literals.rb | 455 | |
| -rw-r--r-- | lib/rdoc/markup.rb | 193 | |
| -rw-r--r-- | lib/rdoc/markup/attr_changer.rb | 23 | |
| -rw-r--r-- | lib/rdoc/markup/attr_span.rb | 36 | |
| -rw-r--r-- | lib/rdoc/markup/attribute_manager.rb | 231 | |
| -rw-r--r-- | lib/rdoc/markup/attributes.rb | 71 | |
| -rw-r--r-- | lib/rdoc/markup/blank_line.rb | 15 | |
| -rw-r--r-- | lib/rdoc/markup/block_quote.rb | 15 | |
| -rw-r--r-- | lib/rdoc/markup/document.rb | 111 | |
| -rw-r--r-- | lib/rdoc/markup/formatter.rb | 173 | |
| -rw-r--r-- | lib/rdoc/markup/formatter_test_case.rb | 353 | |
| -rw-r--r-- | lib/rdoc/markup/hard_break.rb | 32 | |
| -rw-r--r-- | lib/rdoc/markup/heading.rb | 64 | |
| -rw-r--r-- | lib/rdoc/markup/include.rb | 43 | |
| -rw-r--r-- | lib/rdoc/markup/indented_paragraph.rb | 48 | |
| -rw-r--r-- | lib/rdoc/markup/inline.rb | 127 | |
| -rw-r--r-- | lib/rdoc/markup/list.rb | 32 | |
| -rw-r--r-- | lib/rdoc/markup/list_item.rb | 25 | |
| -rw-r--r-- | lib/rdoc/markup/paragraph.rb | 18 | |
| -rw-r--r-- | lib/rdoc/markup/parser.rb | 602 | |
| -rw-r--r-- | lib/rdoc/markup/pre_process.rb | 298 | |
| -rw-r--r-- | lib/rdoc/markup/preprocess.rb | 130 | |
| -rw-r--r-- | lib/rdoc/markup/raw.rb | 15 | |
| -rw-r--r-- | lib/rdoc/markup/regexp_handling.rb | 41 | |
| -rw-r--r-- | lib/rdoc/markup/rule.rb | 4 | |
| -rw-r--r-- | lib/rdoc/markup/table.rb | 47 | |
| -rw-r--r-- | lib/rdoc/markup/to_ansi.rb | 38 | |
| -rw-r--r-- | lib/rdoc/markup/to_bs.rb | 21 | |
| -rw-r--r-- | lib/rdoc/markup/to_html.rb | 480 | |
| -rw-r--r-- | lib/rdoc/markup/to_html_crossref.rb | 250 | |
| -rw-r--r-- | lib/rdoc/markup/to_html_snippet.rb | 285 | |
| -rw-r--r-- | lib/rdoc/markup/to_joined_paragraph.rb | 47 | |
| -rw-r--r-- | lib/rdoc/markup/to_label.rb | 75 | |
| -rw-r--r-- | lib/rdoc/markup/to_markdown.rb | 192 | |
| -rw-r--r-- | lib/rdoc/markup/to_rdoc.rb | 244 | |
| -rw-r--r-- | lib/rdoc/markup/to_table_of_contents.rb | 89 | |
| -rw-r--r-- | lib/rdoc/markup/to_test.rb | 16 | |
| -rw-r--r-- | lib/rdoc/markup/to_tt_only.rb | 121 | |
| -rw-r--r-- | lib/rdoc/markup/verbatim.rb | 48 | |
| -rw-r--r-- | lib/rdoc/meta_method.rb | 3 | |
| -rw-r--r-- | lib/rdoc/method_attr.rb | 419 | |
| -rw-r--r-- | lib/rdoc/mixin.rb | 121 | |
| -rw-r--r-- | lib/rdoc/normal_class.rb | 58 | |
| -rw-r--r-- | lib/rdoc/normal_module.rb | 34 | |
| -rw-r--r-- | lib/rdoc/options.rb | 1116 | |
| -rw-r--r-- | lib/rdoc/parser.rb | 249 | |
| -rw-r--r-- | lib/rdoc/parser/c.rb | 1082 | |
| -rw-r--r-- | lib/rdoc/parser/changelog.rb | 335 | |
| -rw-r--r-- | lib/rdoc/parser/markdown.rb | 24 | |
| -rw-r--r-- | lib/rdoc/parser/perl.rb | 165 | |
| -rw-r--r-- | lib/rdoc/parser/rd.rb | 23 | |
| -rw-r--r-- | lib/rdoc/parser/ripper_state_lex.rb | 590 | |
| -rw-r--r-- | lib/rdoc/parser/ruby.rb | 2257 | |
| -rw-r--r-- | lib/rdoc/parser/ruby_tools.rb | 82 | |
| -rw-r--r-- | lib/rdoc/parser/simple.rb | 35 | |
| -rw-r--r-- | lib/rdoc/parser/text.rb | 12 | |
| -rw-r--r-- | lib/rdoc/rd.rb | 99 | |
| -rw-r--r-- | lib/rdoc/rd/block_parser.rb | 1060 | |
| -rw-r--r-- | lib/rdoc/rd/inline.rb | 72 | |
| -rw-r--r-- | lib/rdoc/rd/inline_parser.rb | 1208 | |
| -rw-r--r-- | lib/rdoc/rdoc.gemspec | 233 | |
| -rw-r--r-- | lib/rdoc/rdoc.rb | 342 | |
| -rw-r--r-- | lib/rdoc/require.rb | 24 | |
| -rw-r--r-- | lib/rdoc/ri.rb | 10 | |
| -rw-r--r-- | lib/rdoc/ri/driver.rb | 995 | |
| -rw-r--r-- | lib/rdoc/ri/formatter.rb | 1 | |
| -rw-r--r-- | lib/rdoc/ri/paths.rb | 125 | |
| -rw-r--r-- | lib/rdoc/ri/store.rb | 249 | |
| -rw-r--r-- | lib/rdoc/ri/task.rb | 71 | |
| -rw-r--r-- | lib/rdoc/ruby_lex.rb | 1292 | |
| -rw-r--r-- | lib/rdoc/ruby_token.rb | 416 | |
| -rw-r--r-- | lib/rdoc/rubygems_hook.rb | 248 | |
| -rw-r--r-- | lib/rdoc/servlet.rb | 451 | |
| -rw-r--r-- | lib/rdoc/single_class.rb | 24 | |
| -rw-r--r-- | lib/rdoc/stats.rb | 512 | |
| -rw-r--r-- | lib/rdoc/stats/normal.rb | 58 | |
| -rw-r--r-- | lib/rdoc/stats/quiet.rb | 60 | |
| -rw-r--r-- | lib/rdoc/stats/verbose.rb | 46 | |
| -rw-r--r-- | lib/rdoc/store.rb | 986 | |
| -rw-r--r-- | lib/rdoc/task.rb | 306 | |
| -rw-r--r-- | lib/rdoc/text.rb | 286 | |
| -rw-r--r-- | lib/rdoc/token_stream.rb | 119 | |
| -rw-r--r-- | lib/rdoc/tokenstream.rb | 52 | |
| -rw-r--r-- | lib/rdoc/tom_doc.rb | 263 | |
| -rw-r--r-- | lib/rdoc/top_level.rb | 267 | |
| -rw-r--r-- | lib/rdoc/version.rb | 10 | |
| -rw-r--r-- | lib/readline.gemspec | 33 | |
| -rw-r--r-- | lib/readline.rb | 7 | |
| -rw-r--r-- | lib/reline.rb | 600 | |
| -rw-r--r-- | lib/reline/ansi.rb | 350 | |
| -rw-r--r-- | lib/reline/config.rb | 401 | |
| -rw-r--r-- | lib/reline/general_io.rb | 109 | |
| -rw-r--r-- | lib/reline/history.rb | 76 | |
| -rw-r--r-- | lib/reline/key_actor.rb | 7 | |
| -rw-r--r-- | lib/reline/key_actor/base.rb | 19 | |
| -rw-r--r-- | lib/reline/key_actor/emacs.rb | 517 | |
| -rw-r--r-- | lib/reline/key_actor/vi_command.rb | 518 | |
| -rw-r--r-- | lib/reline/key_actor/vi_insert.rb | 517 | |
| -rw-r--r-- | lib/reline/key_stroke.rb | 105 | |
| -rw-r--r-- | lib/reline/kill_ring.rb | 125 | |
| -rw-r--r-- | lib/reline/line_editor.rb | 3357 | |
| -rw-r--r-- | lib/reline/reline.gemspec | 25 | |
| -rw-r--r-- | lib/reline/terminfo.rb | 174 | |
| -rw-r--r-- | lib/reline/unicode.rb | 665 | |
| -rw-r--r-- | lib/reline/unicode/east_asian_width.rb | 1164 | |
| -rw-r--r-- | lib/reline/version.rb | 3 | |
| -rw-r--r-- | lib/reline/windows.rb | 497 | |
| -rw-r--r-- | lib/resolv-replace.gemspec | 22 | |
| -rw-r--r-- | lib/resolv-replace.rb | 5 | |
| -rw-r--r-- | lib/resolv.gemspec | 22 | |
| -rw-r--r-- | lib/resolv.rb | 835 | |
| -rw-r--r-- | lib/rexml/attlistdecl.rb | 62 | |
| -rw-r--r-- | lib/rexml/attribute.rb | 188 | |
| -rw-r--r-- | lib/rexml/cdata.rb | 67 | |
| -rw-r--r-- | lib/rexml/child.rb | 96 | |
| -rw-r--r-- | lib/rexml/comment.rb | 80 | |
| -rw-r--r-- | lib/rexml/doctype.rb | 270 | |
| -rw-r--r-- | lib/rexml/document.rb | 233 | |
| -rw-r--r-- | lib/rexml/dtd/attlistdecl.rb | 10 | |
| -rw-r--r-- | lib/rexml/dtd/dtd.rb | 51 | |
| -rw-r--r-- | lib/rexml/dtd/elementdecl.rb | 17 | |
| -rw-r--r-- | lib/rexml/dtd/entitydecl.rb | 56 | |
| -rw-r--r-- | lib/rexml/dtd/notationdecl.rb | 39 | |
| -rw-r--r-- | lib/rexml/element.rb | 1246 | |
| -rw-r--r-- | lib/rexml/encoding.rb | 71 | |
| -rw-r--r-- | lib/rexml/encodings/CP-1252.rb | 103 | |
| -rw-r--r-- | lib/rexml/encodings/EUC-JP.rb | 35 | |
| -rw-r--r-- | lib/rexml/encodings/ICONV.rb | 22 | |
| -rw-r--r-- | lib/rexml/encodings/ISO-8859-1.rb | 7 | |
| -rw-r--r-- | lib/rexml/encodings/ISO-8859-15.rb | 72 | |
| -rw-r--r-- | lib/rexml/encodings/SHIFT-JIS.rb | 37 | |
| -rw-r--r-- | lib/rexml/encodings/SHIFT_JIS.rb | 1 | |
| -rw-r--r-- | lib/rexml/encodings/UNILE.rb | 34 | |
| -rw-r--r-- | lib/rexml/encodings/US-ASCII.rb | 30 | |
| -rw-r--r-- | lib/rexml/encodings/UTF-16.rb | 35 | |
| -rw-r--r-- | lib/rexml/encodings/UTF-8.rb | 18 | |
| -rw-r--r-- | lib/rexml/entity.rb | 166 | |
| -rw-r--r-- | lib/rexml/formatters/default.rb | 111 | |
| -rw-r--r-- | lib/rexml/formatters/pretty.rb | 139 | |
| -rw-r--r-- | lib/rexml/formatters/transitive.rb | 58 | |
| -rw-r--r-- | lib/rexml/functions.rb | 388 | |
| -rw-r--r-- | lib/rexml/instruction.rb | 70 | |
| -rw-r--r-- | lib/rexml/light/node.rb | 196 | |
| -rw-r--r-- | lib/rexml/namespace.rb | 47 | |
| -rw-r--r-- | lib/rexml/node.rb | 75 | |
| -rw-r--r-- | lib/rexml/output.rb | 24 | |
| -rw-r--r-- | lib/rexml/parent.rb | 167 | |
| -rw-r--r-- | lib/rexml/parseexception.rb | 51 | |
| -rw-r--r-- | lib/rexml/parsers/baseparser.rb | 523 | |
| -rw-r--r-- | lib/rexml/parsers/lightparser.rb | 58 | |
| -rw-r--r-- | lib/rexml/parsers/pullparser.rb | 196 | |
| -rw-r--r-- | lib/rexml/parsers/sax2parser.rb | 247 | |
| -rw-r--r-- | lib/rexml/parsers/streamparser.rb | 46 | |
| -rw-r--r-- | lib/rexml/parsers/treeparser.rb | 100 | |
| -rw-r--r-- | lib/rexml/parsers/ultralightparser.rb | 56 | |
| -rw-r--r-- | lib/rexml/parsers/xpathparser.rb | 698 | |
| -rw-r--r-- | lib/rexml/quickpath.rb | 266 | |
| -rw-r--r-- | lib/rexml/rexml.rb | 31 | |
| -rw-r--r-- | lib/rexml/sax2listener.rb | 97 | |
| -rw-r--r-- | lib/rexml/source.rb | 269 | |
| -rw-r--r-- | lib/rexml/streamlistener.rb | 92 | |
| -rw-r--r-- | lib/rexml/syncenumerator.rb | 32 | |
| -rw-r--r-- | lib/rexml/text.rb | 404 | |
| -rw-r--r-- | lib/rexml/undefinednamespaceexception.rb | 8 | |
| -rw-r--r-- | lib/rexml/validation/relaxng.rb | 559 | |
| -rw-r--r-- | lib/rexml/validation/validation.rb | 155 | |
| -rw-r--r-- | lib/rexml/validation/validationexception.rb | 9 | |
| -rw-r--r-- | lib/rexml/xmldecl.rb | 119 | |
| -rw-r--r-- | lib/rexml/xmltokens.rb | 18 | |
| -rw-r--r-- | lib/rexml/xpath.rb | 77 | |
| -rw-r--r-- | lib/rexml/xpath_parser.rb | 793 | |
| -rw-r--r-- | lib/rinda/.document | 3 | |
| -rw-r--r-- | lib/rinda/rinda.gemspec | 28 | |
| -rw-r--r-- | lib/rinda/rinda.rb | 52 | |
| -rw-r--r-- | lib/rinda/ring.rb | 357 | |
| -rw-r--r-- | lib/rinda/tuplespace.rb | 15 | |
| -rw-r--r-- | lib/rss.rb | 19 | |
| -rw-r--r-- | lib/rss/0.9.rb | 428 | |
| -rw-r--r-- | lib/rss/1.0.rb | 452 | |
| -rw-r--r-- | lib/rss/2.0.rb | 111 | |
| -rw-r--r-- | lib/rss/atom.rb | 748 | |
| -rw-r--r-- | lib/rss/content.rb | 31 | |
| -rw-r--r-- | lib/rss/content/1.0.rb | 9 | |
| -rw-r--r-- | lib/rss/content/2.0.rb | 11 | |
| -rw-r--r-- | lib/rss/converter.rb | 170 | |
| -rw-r--r-- | lib/rss/dublincore.rb | 161 | |
| -rw-r--r-- | lib/rss/dublincore/1.0.rb | 12 | |
| -rw-r--r-- | lib/rss/dublincore/2.0.rb | 12 | |
| -rw-r--r-- | lib/rss/dublincore/atom.rb | 16 | |
| -rw-r--r-- | lib/rss/image.rb | 193 | |
| -rw-r--r-- | lib/rss/itunes.rb | 410 | |
| -rw-r--r-- | lib/rss/maker.rb | 54 | |
| -rw-r--r-- | lib/rss/maker/0.9.rb | 508 | |
| -rw-r--r-- | lib/rss/maker/1.0.rb | 435 | |
| -rw-r--r-- | lib/rss/maker/2.0.rb | 223 | |
| -rw-r--r-- | lib/rss/maker/atom.rb | 172 | |
| -rw-r--r-- | lib/rss/maker/base.rb | 944 | |
| -rw-r--r-- | lib/rss/maker/content.rb | 21 | |
| -rw-r--r-- | lib/rss/maker/dublincore.rb | 124 | |
| -rw-r--r-- | lib/rss/maker/entry.rb | 163 | |
| -rw-r--r-- | lib/rss/maker/feed.rb | 426 | |
| -rw-r--r-- | lib/rss/maker/image.rb | 111 | |
| -rw-r--r-- | lib/rss/maker/itunes.rb | 242 | |
| -rw-r--r-- | lib/rss/maker/slash.rb | 33 | |
| -rw-r--r-- | lib/rss/maker/syndication.rb | 18 | |
| -rw-r--r-- | lib/rss/maker/taxonomy.rb | 118 | |
| -rw-r--r-- | lib/rss/maker/trackback.rb | 61 | |
| -rw-r--r-- | lib/rss/parser.rb | 568 | |
| -rw-r--r-- | lib/rss/rexmlparser.rb | 54 | |
| -rw-r--r-- | lib/rss/rss.rb | 1313 | |
| -rw-r--r-- | lib/rss/slash.rb | 49 | |
| -rw-r--r-- | lib/rss/syndication.rb | 67 | |
| -rw-r--r-- | lib/rss/taxonomy.rb | 145 | |
| -rw-r--r-- | lib/rss/trackback.rb | 288 | |
| -rw-r--r-- | lib/rss/utils.rb | 111 | |
| -rw-r--r-- | lib/rss/xml-stylesheet.rb | 105 | |
| -rw-r--r-- | lib/rss/xml.rb | 71 | |
| -rw-r--r-- | lib/rss/xmlparser.rb | 93 | |
| -rw-r--r-- | lib/rss/xmlscanner.rb | 121 | |
| -rw-r--r-- | lib/ruby2_keywords.gemspec | 23 | |
| -rw-r--r-- | lib/ruby_vm/mjit/c_pointer.rb | 329 | |
| -rw-r--r-- | lib/ruby_vm/mjit/c_type.rb | 91 | |
| -rw-r--r-- | lib/ruby_vm/mjit/compiler.rb | 952 | |
| -rw-r--r-- | lib/ruby_vm/mjit/hooks.rb | 32 | |
| -rw-r--r-- | lib/rubygems.rb | 1472 | |
| -rw-r--r-- | lib/rubygems/available_set.rb | 165 | |
| -rw-r--r-- | lib/rubygems/basic_specification.rb | 346 | |
| -rw-r--r-- | lib/rubygems/builder.rb | 94 | |
| -rw-r--r-- | lib/rubygems/bundler_version_finder.rb | 77 | |
| -rw-r--r-- | lib/rubygems/command.rb | 308 | |
| -rw-r--r-- | lib/rubygems/command_manager.rb | 238 | |
| -rw-r--r-- | lib/rubygems/commands/build_command.rb | 145 | |
| -rw-r--r-- | lib/rubygems/commands/cert_command.rb | 392 | |
| -rw-r--r-- | lib/rubygems/commands/check_command.rb | 123 | |
| -rw-r--r-- | lib/rubygems/commands/cleanup_command.rb | 202 | |
| -rw-r--r-- | lib/rubygems/commands/contents_command.rb | 179 | |
| -rw-r--r-- | lib/rubygems/commands/dependency_command.rb | 229 | |
| -rw-r--r-- | lib/rubygems/commands/environment_command.rb | 177 | |
| -rw-r--r-- | lib/rubygems/commands/exec_command.rb | 249 | |
| -rw-r--r-- | lib/rubygems/commands/fetch_command.rb | 80 | |
| -rw-r--r-- | lib/rubygems/commands/generate_index_command.rb | 99 | |
| -rw-r--r-- | lib/rubygems/commands/help_command.rb | 341 | |
| -rw-r--r-- | lib/rubygems/commands/info_command.rb | 38 | |
| -rw-r--r-- | lib/rubygems/commands/install_command.rb | 229 | |
| -rw-r--r-- | lib/rubygems/commands/list_command.rb | 39 | |
| -rw-r--r-- | lib/rubygems/commands/lock_command.rb | 27 | |
| -rw-r--r-- | lib/rubygems/commands/mirror_command.rb | 125 | |
| -rw-r--r-- | lib/rubygems/commands/open_command.rb | 85 | |
| -rw-r--r-- | lib/rubygems/commands/outdated_command.rb | 34 | |
| -rw-r--r-- | lib/rubygems/commands/owner_command.rb | 91 | |
| -rw-r--r-- | lib/rubygems/commands/pristine_command.rb | 213 | |
| -rw-r--r-- | lib/rubygems/commands/push_command.rb | 91 | |
| -rw-r--r-- | lib/rubygems/commands/query_command.rb | 294 | |
| -rw-r--r-- | lib/rubygems/commands/rdoc_command.rb | 86 | |
| -rw-r--r-- | lib/rubygems/commands/search_command.rb | 40 | |
| -rw-r--r-- | lib/rubygems/commands/server_command.rb | 88 | |
| -rw-r--r-- | lib/rubygems/commands/setup_command.rb | 642 | |
| -rw-r--r-- | lib/rubygems/commands/signin_command.rb | 34 | |
| -rw-r--r-- | lib/rubygems/commands/signout_command.rb | 32 | |
| -rw-r--r-- | lib/rubygems/commands/sources_command.rb | 270 | |
| -rw-r--r-- | lib/rubygems/commands/specification_command.rb | 128 | |
| -rw-r--r-- | lib/rubygems/commands/stale_command.rb | 21 | |
| -rw-r--r-- | lib/rubygems/commands/uninstall_command.rb | 184 | |
| -rw-r--r-- | lib/rubygems/commands/unpack_command.rb | 137 | |
| -rw-r--r-- | lib/rubygems/commands/update_command.rb | 377 | |
| -rw-r--r-- | lib/rubygems/commands/which_command.rb | 59 | |
| -rw-r--r-- | lib/rubygems/commands/yank_command.rb | 99 | |
| -rw-r--r-- | lib/rubygems/compatibility.rb | 42 | |
| -rw-r--r-- | lib/rubygems/config_file.rb | 419 | |
| -rw-r--r-- | lib/rubygems/core_ext/kernel_gem.rb | 70 | |
| -rw-r--r-- | lib/rubygems/core_ext/kernel_require.rb | 169 | |
| -rw-r--r-- | lib/rubygems/core_ext/kernel_warn.rb | 50 | |
| -rw-r--r-- | lib/rubygems/core_ext/tcpsocket_init.rb | 54 | |
| -rw-r--r-- | lib/rubygems/custom_require.rb | 44 | |
| -rw-r--r-- | lib/rubygems/defaults.rb | 261 | |
| -rw-r--r-- | lib/rubygems/dependency.rb | 282 | |
| -rw-r--r-- | lib/rubygems/dependency_installer.rb | 430 | |
| -rw-r--r-- | lib/rubygems/dependency_list.rb | 119 | |
| -rw-r--r-- | lib/rubygems/deprecate.rb | 165 | |
| -rw-r--r-- | lib/rubygems/doc_manager.rb | 240 | |
| -rw-r--r-- | lib/rubygems/doctor.rb | 132 | |
| -rw-r--r-- | lib/rubygems/errors.rb | 189 | |
| -rw-r--r-- | lib/rubygems/exceptions.rb | 228 | |
| -rw-r--r-- | lib/rubygems/ext.rb | 16 | |
| -rw-r--r-- | lib/rubygems/ext/build_error.rb | 9 | |
| -rw-r--r-- | lib/rubygems/ext/builder.rb | 235 | |
| -rw-r--r-- | lib/rubygems/ext/cargo_builder.rb | 360 | |
| -rw-r--r-- | lib/rubygems/ext/cargo_builder/link_flag_converter.rb | 27 | |
| -rw-r--r-- | lib/rubygems/ext/cmake_builder.rb | 16 | |
| -rw-r--r-- | lib/rubygems/ext/configure_builder.rb | 18 | |
| -rw-r--r-- | lib/rubygems/ext/ext_conf_builder.rb | 69 | |
| -rw-r--r-- | lib/rubygems/ext/rake_builder.rb | 35 | |
| -rw-r--r-- | lib/rubygems/format.rb | 83 | |
| -rw-r--r-- | lib/rubygems/gem_openssl.rb | 94 | |
| -rw-r--r-- | lib/rubygems/gem_path_searcher.rb | 100 | |
| -rw-r--r-- | lib/rubygems/gem_runner.rb | 68 | |
| -rw-r--r-- | lib/rubygems/gemcutter_utilities.rb | 367 | |
| -rw-r--r-- | lib/rubygems/gemcutter_utilities/webauthn_listener.rb | 105 | |
| -rw-r--r-- | lib/rubygems/gemcutter_utilities/webauthn_listener/response.rb | 163 | |
| -rw-r--r-- | lib/rubygems/gemcutter_utilities/webauthn_poller.rb | 78 | |
| -rw-r--r-- | lib/rubygems/indexer.rb | 532 | |
| -rw-r--r-- | lib/rubygems/install_default_message.rb | 13 | |
| -rw-r--r-- | lib/rubygems/install_message.rb | 13 | |
| -rw-r--r-- | lib/rubygems/install_update_options.rb | 198 | |
| -rw-r--r-- | lib/rubygems/installer.rb | 1008 | |
| -rw-r--r-- | lib/rubygems/installer_uninstaller_utils.rb | 29 | |
| -rw-r--r-- | lib/rubygems/local_remote_options.rb | 66 | |
| -rw-r--r-- | lib/rubygems/mock_gem_ui.rb | 86 | |
| -rw-r--r-- | lib/rubygems/name_tuple.rb | 121 | |
| -rw-r--r-- | lib/rubygems/old_format.rb | 152 | |
| -rw-r--r-- | lib/rubygems/openssl.rb | 7 | |
| -rw-r--r-- | lib/rubygems/optparse.rb | 3 | |
| -rw-r--r-- | lib/rubygems/optparse/.document | 1 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optionparser.rb | 2 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optparse.rb | 2308 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optparse/ac.rb | 54 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optparse/date.rb | 18 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optparse/kwargs.rb | 22 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optparse/shellwords.rb | 7 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optparse/time.rb | 11 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optparse/uri.rb | 7 | |
| -rw-r--r-- | lib/rubygems/optparse/lib/optparse/version.rb | 71 | |
| -rw-r--r-- | lib/rubygems/package.rb | 765 | |
| -rw-r--r-- | lib/rubygems/package/digest_io.rb | 63 | |
| -rw-r--r-- | lib/rubygems/package/f_sync_dir.rb | 23 | |
| -rw-r--r-- | lib/rubygems/package/file_source.rb | 32 | |
| -rw-r--r-- | lib/rubygems/package/io_source.rb | 48 | |
| -rw-r--r-- | lib/rubygems/package/old.rb | 169 | |
| -rw-r--r-- | lib/rubygems/package/source.rb | 4 | |
| -rw-r--r-- | lib/rubygems/package/tar_header.rb | 206 | |
| -rw-r--r-- | lib/rubygems/package/tar_input.rb | 219 | |
| -rw-r--r-- | lib/rubygems/package/tar_output.rb | 144 | |
| -rw-r--r-- | lib/rubygems/package/tar_reader.rb | 55 | |
| -rw-r--r-- | lib/rubygems/package/tar_reader/entry.rb | 129 | |
| -rw-r--r-- | lib/rubygems/package/tar_writer.rb | 156 | |
| -rw-r--r-- | lib/rubygems/package_task.rb | 41 | |
| -rw-r--r-- | lib/rubygems/path_support.rb | 86 | |
| -rw-r--r-- | lib/rubygems/platform.rb | 211 | |
| -rw-r--r-- | lib/rubygems/psych_tree.rb | 33 | |
| -rw-r--r-- | lib/rubygems/query_utils.rb | 351 | |
| -rw-r--r-- | lib/rubygems/rdoc.rb | 13 | |
| -rw-r--r-- | lib/rubygems/remote_fetcher.rb | 405 | |
| -rw-r--r-- | lib/rubygems/request.rb | 295 | |
| -rw-r--r-- | lib/rubygems/request/connection_pools.rb | 95 | |
| -rw-r--r-- | lib/rubygems/request/http_pool.rb | 47 | |
| -rw-r--r-- | lib/rubygems/request/https_pool.rb | 10 | |
| -rw-r--r-- | lib/rubygems/request_set.rb | 467 | |
| -rw-r--r-- | lib/rubygems/request_set/gem_dependency_api.rb | 844 | |
| -rw-r--r-- | lib/rubygems/request_set/lockfile.rb | 240 | |
| -rw-r--r-- | lib/rubygems/request_set/lockfile/parser.rb | 344 | |
| -rw-r--r-- | lib/rubygems/request_set/lockfile/tokenizer.rb | 114 | |
| -rw-r--r-- | lib/rubygems/require_paths_builder.rb | 13 | |
| -rw-r--r-- | lib/rubygems/requirement.rb | 245 | |
| -rw-r--r-- | lib/rubygems/resolver.rb | 348 | |
| -rw-r--r-- | lib/rubygems/resolver/activation_request.rb | 163 | |
| -rw-r--r-- | lib/rubygems/resolver/api_set.rb | 133 | |
| -rw-r--r-- | lib/rubygems/resolver/api_set/gem_parser.rb | 20 | |
| -rw-r--r-- | lib/rubygems/resolver/api_specification.rb | 105 | |
| -rw-r--r-- | lib/rubygems/resolver/best_set.rb | 77 | |
| -rw-r--r-- | lib/rubygems/resolver/composed_set.rb | 65 | |
| -rw-r--r-- | lib/rubygems/resolver/conflict.rb | 154 | |
| -rw-r--r-- | lib/rubygems/resolver/current_set.rb | 12 | |
| -rw-r--r-- | lib/rubygems/resolver/dependency_request.rb | 119 | |
| -rw-r--r-- | lib/rubygems/resolver/git_set.rb | 121 | |
| -rw-r--r-- | lib/rubygems/resolver/git_specification.rb | 57 | |
| -rw-r--r-- | lib/rubygems/resolver/index_set.rb | 79 | |
| -rw-r--r-- | lib/rubygems/resolver/index_specification.rb | 101 | |
| -rw-r--r-- | lib/rubygems/resolver/installed_specification.rb | 57 | |
| -rw-r--r-- | lib/rubygems/resolver/installer_set.rb | 272 | |
| -rw-r--r-- | lib/rubygems/resolver/local_specification.rb | 40 | |
| -rw-r--r-- | lib/rubygems/resolver/lock_set.rb | 81 | |
| -rw-r--r-- | lib/rubygems/resolver/lock_specification.rb | 86 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo.rb | 3 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo.rb | 11 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb | 57 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb | 88 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb | 255 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb | 36 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb | 66 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb | 62 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb | 63 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb | 61 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb | 126 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb | 46 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb | 36 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb | 164 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb | 149 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb | 6 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb | 112 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb | 67 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb | 839 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb | 46 | |
| -rw-r--r-- | lib/rubygems/resolver/molinillo/lib/molinillo/state.rb | 58 | |
| -rw-r--r-- | lib/rubygems/resolver/requirement_list.rb | 82 | |
| -rw-r--r-- | lib/rubygems/resolver/set.rb | 55 | |
| -rw-r--r-- | lib/rubygems/resolver/source_set.rb | 47 | |
| -rw-r--r-- | lib/rubygems/resolver/spec_specification.rb | 69 | |
| -rw-r--r-- | lib/rubygems/resolver/specification.rb | 126 | |
| -rw-r--r-- | lib/rubygems/resolver/stats.rb | 46 | |
| -rw-r--r-- | lib/rubygems/resolver/vendor_set.rb | 86 | |
| -rw-r--r-- | lib/rubygems/resolver/vendor_specification.rb | 23 | |
| -rw-r--r-- | lib/rubygems/s3_uri_signer.rb | 177 | |
| -rw-r--r-- | lib/rubygems/safe_yaml.rb | 59 | |
| -rw-r--r-- | lib/rubygems/security.rb | 973 | |
| -rw-r--r-- | lib/rubygems/security/policies.rb | 116 | |
| -rw-r--r-- | lib/rubygems/security/policy.rb | 292 | |
| -rw-r--r-- | lib/rubygems/security/signer.rb | 204 | |
| -rw-r--r-- | lib/rubygems/security/trust_dir.rb | 119 | |
| -rw-r--r-- | lib/rubygems/security_option.rb | 43 | |
| -rw-r--r-- | lib/rubygems/server.rb | 859 | |
| -rw-r--r-- | lib/rubygems/shellwords.rb | 3 | |
| -rw-r--r-- | lib/rubygems/source.rb | 241 | |
| -rw-r--r-- | lib/rubygems/source/git.rb | 241 | |
| -rw-r--r-- | lib/rubygems/source/installed.rb | 39 | |
| -rw-r--r-- | lib/rubygems/source/local.rb | 132 | |
| -rw-r--r-- | lib/rubygems/source/lock.rb | 51 | |
| -rw-r--r-- | lib/rubygems/source/specific_file.rb | 72 | |
| -rw-r--r-- | lib/rubygems/source/vendor.rb | 26 | |
| -rw-r--r-- | lib/rubygems/source_index.rb | 597 | |
| -rw-r--r-- | lib/rubygems/source_info_cache.rb | 395 | |
| -rw-r--r-- | lib/rubygems/source_info_cache_entry.rb | 56 | |
| -rw-r--r-- | lib/rubygems/source_list.rb | 146 | |
| -rw-r--r-- | lib/rubygems/spec_fetcher.rb | 368 | |
| -rw-r--r-- | lib/rubygems/specification.rb | 3099 | |
| -rw-r--r-- | lib/rubygems/specification_policy.rb | 507 | |
| -rw-r--r-- | lib/rubygems/ssl_certs/.document | 1 | |
| -rw-r--r-- | lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem | 21 | |
| -rw-r--r-- | lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem | 21 | |
| -rw-r--r-- | lib/rubygems/stub_specification.rb | 211 | |
| -rw-r--r-- | lib/rubygems/test_utilities.rb | 147 | |
| -rw-r--r-- | lib/rubygems/text.rb | 66 | |
| -rw-r--r-- | lib/rubygems/tsort.rb | 3 | |
| -rw-r--r-- | lib/rubygems/tsort/.document | 1 | |
| -rw-r--r-- | lib/rubygems/tsort/lib/tsort.rb | 452 | |
| -rw-r--r-- | lib/rubygems/uninstaller.rb | 385 | |
| -rw-r--r-- | lib/rubygems/unknown_command_spell_checker.rb | 21 | |
| -rw-r--r-- | lib/rubygems/update_suggestion.rb | 69 | |
| -rw-r--r-- | lib/rubygems/uri.rb | 126 | |
| -rw-r--r-- | lib/rubygems/uri_formatter.rb | 47 | |
| -rw-r--r-- | lib/rubygems/user_interaction.rb | 399 | |
| -rw-r--r-- | lib/rubygems/util.rb | 116 | |
| -rw-r--r-- | lib/rubygems/util/licenses.rb | 545 | |
| -rw-r--r-- | lib/rubygems/util/list.rb | 38 | |
| -rw-r--r-- | lib/rubygems/validator.rb | 206 | |
| -rw-r--r-- | lib/rubygems/version.rb | 263 | |
| -rw-r--r-- | lib/rubygems/version_option.rb | 40 | |
| -rw-r--r-- | lib/scanf.rb | 719 | |
| -rw-r--r-- | lib/securerandom.gemspec | 22 | |
| -rw-r--r-- | lib/securerandom.rb | 298 | |
| -rw-r--r--[-rwxr-xr-x] | lib/set.rb | 1559 | |
| -rw-r--r-- | lib/set/set.gemspec | 23 | |
| -rw-r--r-- | lib/set/sorted_set.rb | 6 | |
| -rw-r--r-- | lib/shell.rb | 300 | |
| -rw-r--r-- | lib/shell/builtin-command.rb | 160 | |
| -rw-r--r-- | lib/shell/command-processor.rb | 593 | |
| -rw-r--r-- | lib/shell/error.rb | 25 | |
| -rw-r--r-- | lib/shell/filter.rb | 109 | |
| -rw-r--r-- | lib/shell/process-controller.rb | 319 | |
| -rw-r--r-- | lib/shell/system-command.rb | 159 | |
| -rw-r--r-- | lib/shell/version.rb | 15 | |
| -rw-r--r-- | lib/shellwords.gemspec | 22 | |
| -rw-r--r-- | lib/shellwords.rb | 176 | |
| -rw-r--r-- | lib/singleton.rb | 330 | |
| -rw-r--r-- | lib/singleton/singleton.gemspec | 30 | |
| -rw-r--r-- | lib/sync.rb | 307 | |
| -rw-r--r-- | lib/syntax_suggest.rb | 3 | |
| -rw-r--r-- | lib/syntax_suggest/api.rb | 201 | |
| -rw-r--r-- | lib/syntax_suggest/around_block_scan.rb | 232 | |
| -rw-r--r-- | lib/syntax_suggest/block_expand.rb | 165 | |
| -rw-r--r-- | lib/syntax_suggest/capture/before_after_keyword_ends.rb | 85 | |
| -rw-r--r-- | lib/syntax_suggest/capture/falling_indent_lines.rb | 71 | |
| -rw-r--r-- | lib/syntax_suggest/capture_code_context.rb | 245 | |
| -rw-r--r-- | lib/syntax_suggest/clean_document.rb | 306 | |
| -rw-r--r-- | lib/syntax_suggest/cli.rb | 130 | |
| -rw-r--r-- | lib/syntax_suggest/code_block.rb | 100 | |
| -rw-r--r-- | lib/syntax_suggest/code_frontier.rb | 178 | |
| -rw-r--r-- | lib/syntax_suggest/code_line.rb | 237 | |
| -rw-r--r-- | lib/syntax_suggest/code_search.rb | 139 | |
| -rw-r--r-- | lib/syntax_suggest/core_ext.rb | 114 | |
| -rw-r--r-- | lib/syntax_suggest/display_code_with_line_numbers.rb | 70 | |
| -rw-r--r-- | lib/syntax_suggest/display_invalid_blocks.rb | 83 | |
| -rw-r--r-- | lib/syntax_suggest/explain_syntax.rb | 103 | |
| -rw-r--r-- | lib/syntax_suggest/left_right_lex_count.rb | 168 | |
| -rw-r--r-- | lib/syntax_suggest/lex_all.rb | 55 | |
| -rw-r--r-- | lib/syntax_suggest/lex_value.rb | 70 | |
| -rw-r--r-- | lib/syntax_suggest/parse_blocks_from_indent_line.rb | 60 | |
| -rw-r--r-- | lib/syntax_suggest/pathname_from_message.rb | 59 | |
| -rw-r--r-- | lib/syntax_suggest/priority_engulf_queue.rb | 63 | |
| -rw-r--r-- | lib/syntax_suggest/priority_queue.rb | 105 | |
| -rw-r--r-- | lib/syntax_suggest/ripper_errors.rb | 36 | |
| -rw-r--r-- | lib/syntax_suggest/scan_history.rb | 134 | |
| -rw-r--r-- | lib/syntax_suggest/syntax_suggest.gemspec | 32 | |
| -rw-r--r-- | lib/syntax_suggest/unvisited_lines.rb | 36 | |
| -rw-r--r-- | lib/syntax_suggest/version.rb | 5 | |
| -rw-r--r-- | lib/tempfile.gemspec | 22 | |
| -rw-r--r-- | lib/tempfile.rb | 363 | |
| -rw-r--r-- | lib/test/unit.rb | 167 | |
| -rw-r--r-- | lib/test/unit/assertions.rb | 156 | |
| -rw-r--r-- | lib/test/unit/testcase.rb | 15 | |
| -rw-r--r-- | lib/thread.rb | 361 | |
| -rw-r--r-- | lib/thwait.rb | 143 | |
| -rw-r--r-- | lib/time.gemspec | 24 | |
| -rw-r--r-- | lib/time.rb | 533 | |
| -rw-r--r-- | lib/timeout.rb | 241 | |
| -rw-r--r-- | lib/timeout/timeout.gemspec | 30 | |
| -rw-r--r-- | lib/tmpdir.gemspec | 26 | |
| -rw-r--r-- | lib/tmpdir.rb | 119 | |
| -rw-r--r-- | lib/tracer.rb | 195 | |
| -rw-r--r-- | lib/tsort.gemspec | 22 | |
| -rw-r--r-- | lib/tsort.rb | 250 | |
| -rw-r--r-- | lib/ubygems.rb | 10 | |
| -rw-r--r-- | lib/un.gemspec | 24 | |
| -rw-r--r-- | lib/un.rb | 223 | |
| -rw-r--r-- | lib/unicode_normalize/normalize.rb | 175 | |
| -rw-r--r-- | lib/unicode_normalize/tables.rb | 9259 | |
| -rw-r--r-- | lib/uri.rb | 111 | |
| -rw-r--r-- | lib/uri/.document | 7 | |
| -rw-r--r-- | lib/uri/common.rb | 1066 | |
| -rw-r--r-- | lib/uri/file.rb | 100 | |
| -rw-r--r-- | lib/uri/ftp.rb | 108 | |
| -rw-r--r-- | lib/uri/generic.rb | 979 | |
| -rw-r--r-- | lib/uri/http.rb | 97 | |
| -rw-r--r-- | lib/uri/https.rb | 11 | |
| -rw-r--r-- | lib/uri/ldap.rb | 83 | |
| -rw-r--r-- | lib/uri/ldaps.rb | 14 | |
| -rw-r--r-- | lib/uri/mailto.rb | 193 | |
| -rw-r--r-- | lib/uri/rfc2396_parser.rb | 539 | |
| -rw-r--r-- | lib/uri/rfc3986_parser.rb | 119 | |
| -rw-r--r-- | lib/uri/uri.gemspec | 31 | |
| -rw-r--r-- | lib/uri/version.rb | 6 | |
| -rw-r--r-- | lib/uri/ws.rb | 83 | |
| -rw-r--r-- | lib/uri/wss.rb | 23 | |
| -rw-r--r-- | lib/weakref.rb | 100 | |
| -rw-r--r-- | lib/weakref/weakref.gemspec | 34 | |
| -rw-r--r-- | lib/webrick.rb | 29 | |
| -rw-r--r-- | lib/webrick/accesslog.rb | 75 | |
| -rw-r--r-- | lib/webrick/cgi.rb | 260 | |
| -rw-r--r-- | lib/webrick/compat.rb | 15 | |
| -rw-r--r-- | lib/webrick/config.rb | 121 | |
| -rw-r--r-- | lib/webrick/cookie.rb | 110 | |
| -rw-r--r-- | lib/webrick/htmlutils.rb | 25 | |
| -rw-r--r-- | lib/webrick/httpauth.rb | 45 | |
| -rw-r--r-- | lib/webrick/httpauth/authenticator.rb | 79 | |
| -rw-r--r-- | lib/webrick/httpauth/basicauth.rb | 65 | |
| -rw-r--r-- | lib/webrick/httpauth/digestauth.rb | 392 | |
| -rw-r--r-- | lib/webrick/httpauth/htdigest.rb | 91 | |
| -rw-r--r-- | lib/webrick/httpauth/htgroup.rb | 61 | |
| -rw-r--r-- | lib/webrick/httpauth/htpasswd.rb | 83 | |
| -rw-r--r-- | lib/webrick/httpauth/userdb.rb | 29 | |
| -rw-r--r-- | lib/webrick/httpproxy.rb | 288 | |
| -rw-r--r-- | lib/webrick/httprequest.rb | 412 | |
| -rw-r--r-- | lib/webrick/httpresponse.rb | 326 | |
| -rw-r--r-- | lib/webrick/https.rb | 63 | |
| -rw-r--r-- | lib/webrick/httpserver.rb | 217 | |
| -rw-r--r-- | lib/webrick/httpservlet.rb | 22 | |
| -rw-r--r-- | lib/webrick/httpservlet/abstract.rb | 70 | |
| -rw-r--r-- | lib/webrick/httpservlet/cgi_runner.rb | 47 | |
| -rw-r--r-- | lib/webrick/httpservlet/cgihandler.rb | 108 | |
| -rw-r--r-- | lib/webrick/httpservlet/erbhandler.rb | 54 | |
| -rw-r--r-- | lib/webrick/httpservlet/filehandler.rb | 439 | |
| -rw-r--r-- | lib/webrick/httpservlet/prochandler.rb | 33 | |
| -rw-r--r-- | lib/webrick/httpstatus.rb | 132 | |
| -rw-r--r-- | lib/webrick/httputils.rb | 392 | |
| -rw-r--r-- | lib/webrick/httpversion.rb | 49 | |
| -rw-r--r-- | lib/webrick/log.rb | 88 | |
| -rw-r--r-- | lib/webrick/server.rb | 210 | |
| -rw-r--r-- | lib/webrick/ssl.rb | 127 | |
| -rw-r--r-- | lib/webrick/utils.rb | 175 | |
| -rw-r--r-- | lib/webrick/version.rb | 13 | |
| -rw-r--r-- | lib/xmlrpc/.document | 1 | |
| -rw-r--r-- | lib/xmlrpc/README.rdoc | 300 | |
| -rw-r--r-- | lib/xmlrpc/README.txt | 31 | |
| -rw-r--r-- | lib/xmlrpc/base64.rb | 81 | |
| -rw-r--r-- | lib/xmlrpc/client.rb | 625 | |
| -rw-r--r-- | lib/xmlrpc/config.rb | 40 | |
| -rw-r--r-- | lib/xmlrpc/create.rb | 290 | |
| -rw-r--r-- | lib/xmlrpc/datetime.rb | 142 | |
| -rw-r--r-- | lib/xmlrpc/httpserver.rb | 178 | |
| -rw-r--r-- | lib/xmlrpc/marshal.rb | 76 | |
| -rw-r--r-- | lib/xmlrpc/parser.rb | 813 | |
| -rw-r--r-- | lib/xmlrpc/server.rb | 778 | |
| -rw-r--r-- | lib/xmlrpc/utils.rb | 165 | |
| -rw-r--r-- | lib/yaml.rb | 100 | |
| -rw-r--r-- | lib/yaml/dbm.rb | 189 | |
| -rw-r--r-- | lib/yaml/store.rb | 61 | |
| -rw-r--r-- | lib/yaml/yaml.gemspec | 23 | |
| -rwxr-xr-x | libexec/bundle | 38 | |
| -rwxr-xr-x | libexec/bundler | 4 | |
| -rwxr-xr-x | libexec/erb | 164 | |
| -rwxr-xr-x | libexec/irb | 11 | |
| -rwxr-xr-x | libexec/racc | 320 | |
| -rwxr-xr-x | libexec/rdoc | 43 | |
| -rwxr-xr-x | libexec/ri | 12 | |
| -rwxr-xr-x | libexec/syntax_suggest | 7 | |
| -rw-r--r-- | load.c | 1614 | |
| -rw-r--r-- | loadpath.c | 91 | |
| -rw-r--r-- | localeinit.c | 138 | |
| -rw-r--r-- | main.c | 41 | |
| -rw-r--r-- | man/erb.1 | 39 | |
| -rw-r--r-- | man/goruby.1 | 12 | |
| -rw-r--r-- | man/index.txt | 25 | |
| -rw-r--r-- | man/irb.1 | 143 | |
| -rw-r--r-- | man/rake.1 | 169 | |
| -rw-r--r-- | man/ri.1 | 247 | |
| -rw-r--r-- | man/ruby.1 | 313 | |
| -rw-r--r-- | marshal.c | 2562 | |
| -rw-r--r-- | marshal.rb | 40 | |
| -rw-r--r-- | math.c | 1024 | |
| -rw-r--r-- | memory_view.c | 872 | |
| -rw-r--r-- | method.h | 272 | |
| -rw-r--r-- | mini_builtin.c | 97 | |
| -rw-r--r-- | miniinit.c | 51 | |
| -rw-r--r-- | misc/README | 14 | |
| -rwxr-xr-x | misc/expand_tabs.rb | 208 | |
| -rw-r--r-- | misc/inf-ruby.el | 416 | |
| -rwxr-xr-x | misc/lldb_cruby.py | 748 | |
| -rw-r--r-- | misc/lldb_disasm.py | 250 | |
| -rw-r--r-- | misc/lldb_rb/commands/command_template.py | 30 | |
| -rw-r--r-- | misc/lldb_rb/commands/heap_page_command.py | 26 | |
| -rw-r--r-- | misc/lldb_rb/commands/rclass_ext_command.py | 14 | |
| -rw-r--r-- | misc/lldb_rb/constants.py | 4 | |
| -rw-r--r-- | misc/lldb_rb/rb_base_command.py | 69 | |
| -rw-r--r-- | misc/lldb_yjit.py | 47 | |
| -rw-r--r-- | misc/rb_optparse.bash | 21 | |
| -rw-r--r-- | misc/rb_optparse.zsh | 39 | |
| -rw-r--r-- | misc/rdoc-mode.el | 82 | |
| -rw-r--r-- | misc/ruby-electric.el | 200 | |
| -rw-r--r-- | misc/ruby-mode.el | 1424 | |
| -rw-r--r-- | misc/ruby-style.el | 21 | |
| -rw-r--r-- | misc/rubydb2x.el | 104 | |
| -rw-r--r-- | misc/rubydb3x.el | 115 | |
| -rw-r--r-- | misc/test_lldb_cruby.rb | 40 | |
| -rw-r--r-- | missing/alloca.c | 10 | |
| -rw-r--r-- | missing/crt_externs.h | 8 | |
| -rw-r--r-- | missing/crypt.c | 624 | |
| -rw-r--r-- | missing/crypt.h | 247 | |
| -rw-r--r-- | missing/des_tables.c | 1616 | |
| -rw-r--r-- | missing/dtoa.c | 3470 | |
| -rw-r--r-- | missing/dup2.c | 60 | |
| -rw-r--r-- | missing/erf.c | 15 | |
| -rw-r--r-- | missing/explicit_bzero.c | 94 | |
| -rw-r--r-- | missing/file.h | 5 | |
| -rw-r--r-- | missing/fileblocks.c | 1 | |
| -rw-r--r-- | missing/finite.c | 9 | |
| -rw-r--r-- | missing/flock.c | 20 | |
| -rw-r--r-- | missing/isinf.c | 69 | |
| -rw-r--r-- | missing/isnan.c | 17 | |
| -rw-r--r-- | missing/langinfo.c | 8 | |
| -rw-r--r-- | missing/lgamma_r.c | 13 | |
| -rw-r--r-- | missing/memcmp.c | 3 | |
| -rw-r--r-- | missing/mt19937.c | 158 | |
| -rw-r--r-- | missing/nan.c | 28 | |
| -rw-r--r-- | missing/nextafter.c | 77 | |
| -rw-r--r-- | missing/os2.c | 138 | |
| -rw-r--r-- | missing/procstat_vm.c | 85 | |
| -rw-r--r-- | missing/setproctitle.c | 175 | |
| -rw-r--r-- | missing/signbit.c | 19 | |
| -rw-r--r-- | missing/strerror.c | 2 | |
| -rw-r--r-- | missing/strlcat.c | 86 | |
| -rw-r--r-- | missing/strlcpy.c | 77 | |
| -rw-r--r-- | missing/strtol.c | 27 | |
| -rw-r--r-- | missing/tgamma.c | 44 | |
| -rw-r--r-- | missing/x86_64-chkstk.S | 10 | |
| -rw-r--r-- | mjit.c | 1999 | |
| -rw-r--r-- | mjit.h | 145 | |
| -rw-r--r-- | mjit.rb | 37 | |
| -rw-r--r-- | mjit_c.c | 43 | |
| -rw-r--r-- | mjit_c.h | 97 | |
| -rw-r--r-- | mjit_c.rb | 807 | |
| -rw-r--r-- | nilclass.rb | 25 | |
| -rw-r--r-- | node.c | 1992 | |
| -rw-r--r-- | node.h | 612 | |
| -rw-r--r-- | numeric.c | 6623 | |
| -rw-r--r-- | numeric.rb | 405 | |
| -rw-r--r-- | object.c | 3954 | |
| -rw-r--r-- | pack.c | 3379 | |
| -rw-r--r-- | pack.rb | 31 | |
| -rw-r--r-- | parse.y | 16321 | |
| -rw-r--r-- | prelude.rb | 50 | |
| -rw-r--r-- | probes.d | 223 | |
| -rw-r--r-- | probes_helper.h | 44 | |
| -rw-r--r-- | proc.c | 3912 | |
| -rw-r--r-- | process.c | 7701 | |
| -rw-r--r-- | ractor.c | 3327 | |
| -rw-r--r-- | ractor.rb | 842 | |
| -rw-r--r-- | ractor_core.h | 342 | |
| -rw-r--r-- | random.c | 2199 | |
| -rw-r--r-- | range.c | 2476 | |
| -rw-r--r-- | rational.c | 2789 | |
| -rw-r--r-- | re.c | 3604 | |
| -rw-r--r-- | regcomp.c | 1361 | |
| -rw-r--r-- | regenc.c | 201 | |
| -rw-r--r-- | regenc.h | 178 | |
| -rw-r--r-- | regerror.c | 118 | |
| -rw-r--r-- | regexec.c | 3147 | |
| -rw-r--r-- | regint.h | 566 | |
| -rw-r--r-- | regparse.c | 2505 | |
| -rw-r--r-- | regparse.h | 84 | |
| -rw-r--r-- | regsyntax.c | 93 | |
| -rw-r--r-- | ruby-runner.c | 98 | |
| -rw-r--r-- | ruby.c | 3397 | |
| -rw-r--r-- | ruby_assert.h | 14 | |
| -rw-r--r-- | ruby_atomic.h | 23 | |
| -rw-r--r-- | rubystub.c | 61 | |
| -rw-r--r-- | safe.c | 135 | |
| -rw-r--r-- | sample/README | 4 | |
| -rw-r--r-- | sample/benchmark.rb | 19 | |
| -rw-r--r-- | sample/biorhythm.rb | 31 | |
| -rw-r--r-- | sample/cal.rb | 10 | |
| -rw-r--r-- | sample/cbreak.rb | 8 | |
| -rw-r--r-- | sample/cgi-session-pstore.rb | 11 | |
| -rw-r--r-- | sample/coverage.rb | 6 | |
| -rw-r--r-- | sample/delegate.rb | 31 | |
| -rw-r--r-- | sample/dir.rb | 2 | |
| -rw-r--r-- | sample/drb/README.ja.rdoc | 59 | |
| -rw-r--r-- | sample/drb/README.rd | 56 | |
| -rw-r--r-- | sample/drb/README.rd.ja | 59 | |
| -rw-r--r-- | sample/drb/README.rdoc | 56 | |
| -rw-r--r-- | sample/drb/acl.rb | 15 | |
| -rw-r--r-- | sample/drb/darray.rb | 2 | |
| -rw-r--r-- | sample/drb/darrayc.rb | 4 | |
| -rw-r--r-- | sample/drb/dbiff.rb | 24 | |
| -rw-r--r-- | sample/drb/dchatc.rb | 4 | |
| -rw-r--r-- | sample/drb/dchats.rb | 25 | |
| -rw-r--r-- | sample/drb/dhasen.rb | 7 | |
| -rw-r--r-- | sample/drb/dhasenc.rb | 8 | |
| -rw-r--r-- | sample/drb/dlogc.rb | 2 | |
| -rw-r--r-- | sample/drb/dlogd.rb | 9 | |
| -rw-r--r-- | sample/drb/dqin.rb | 2 | |
| -rw-r--r-- | sample/drb/dqout.rb | 2 | |
| -rw-r--r-- | sample/drb/dqueue.rb | 5 | |
| -rw-r--r-- | sample/drb/drbc.rb | 2 | |
| -rw-r--r-- | sample/drb/drbch.rb | 2 | |
| -rw-r--r-- | sample/drb/drbm.rb | 6 | |
| -rw-r--r-- | sample/drb/drbmc.rb | 2 | |
| -rw-r--r-- | sample/drb/drbs-acl.rb | 6 | |
| -rw-r--r-- | sample/drb/drbs.rb | 4 | |
| -rw-r--r-- | sample/drb/extserv_test.rb | 12 | |
| -rw-r--r-- | sample/drb/gw_cu.rb | 2 | |
| -rw-r--r-- | sample/drb/holderc.rb | 2 | |
| -rw-r--r-- | sample/drb/holders.rb | 6 | |
| -rw-r--r-- | sample/drb/http0.rb | 64 | |
| -rw-r--r-- | sample/drb/http0serv.rb | 125 | |
| -rw-r--r-- | sample/drb/name.rb | 22 | |
| -rw-r--r-- | sample/drb/namec.rb | 2 | |
| -rw-r--r-- | sample/drb/old_tuplespace.rb | 84 | |
| -rw-r--r-- | sample/drb/ring_echo.rb | 3 | |
| -rw-r--r-- | sample/drb/ring_place.rb | 6 | |
| -rw-r--r-- | sample/drb/simpletuple.rb | 16 | |
| -rw-r--r-- | sample/drb/speedc.rb | 2 | |
| -rw-r--r-- | sample/drb/speeds.rb | 4 | |
| -rw-r--r-- | sample/dualstack-fetch.rb | 2 | |
| -rw-r--r-- | sample/dualstack-httpd.rb | 33 | |
| -rw-r--r-- | sample/export.rb | 2 | |
| -rw-r--r-- | sample/exyacc.rb | 26 | |
| -rw-r--r-- | sample/fact.rb | 4 | |
| -rw-r--r-- | sample/fib.awk | 8 | |
| -rw-r--r-- | sample/fib.pl | 4 | |
| -rw-r--r-- | sample/fib.py | 2 | |
| -rw-r--r-- | sample/fib.scm | 4 | |
| -rw-r--r-- | sample/freq.rb | 12 | |
| -rw-r--r-- | sample/from.rb | 42 | |
| -rw-r--r-- | sample/fullpath.rb | 2 | |
| -rw-r--r-- | sample/getoptlong/abbrev.rb | 9 | |
| -rw-r--r-- | sample/getoptlong/aliases.rb | 8 | |
| -rw-r--r-- | sample/getoptlong/argv.rb | 12 | |
| -rw-r--r-- | sample/getoptlong/each.rb | 12 | |
| -rw-r--r-- | sample/getoptlong/fibonacci.rb | 62 | |
| -rw-r--r-- | sample/getoptlong/permute.rb | 12 | |
| -rw-r--r-- | sample/getoptlong/require_order.rb | 13 | |
| -rw-r--r-- | sample/getoptlong/return_in_order.rb | 13 | |
| -rw-r--r-- | sample/getoptlong/simple.rb | 7 | |
| -rw-r--r-- | sample/getoptlong/types.rb | 10 | |
| -rw-r--r-- | sample/iseq_loader.rb | 243 | |
| -rw-r--r-- | sample/list.rb | 6 | |
| -rw-r--r-- | sample/list2.rb | 2 | |
| -rw-r--r-- | sample/list3.rb | 4 | |
| -rw-r--r-- | sample/logger/app.rb | 2 | |
| -rwxr-xr-x[-rw-r--r--] | sample/mine.rb | 48 | |
| -rw-r--r-- | sample/mkproto.rb | 22 | |
| -rw-r--r-- | sample/mpart.rb | 44 | |
| -rw-r--r-- | sample/net-imap.rb | 167 | |
| -rw-r--r-- | sample/observ.rb | 11 | |
| -rw-r--r-- | sample/occur.pl | 8 | |
| -rw-r--r-- | sample/occur.rb | 4 | |
| -rw-r--r-- | sample/occur2.rb | 13 | |
| -rw-r--r-- | sample/open3.rb | 12 | |
| -rw-r--r-- | sample/openssl/c_rehash.rb | 41 | |
| -rw-r--r-- | sample/openssl/cert2text.rb | 7 | |
| -rw-r--r-- | sample/openssl/certstore.rb | 61 | |
| -rw-r--r-- | sample/openssl/cipher.rb | 4 | |
| -rw-r--r-- | sample/openssl/crlstore.rb | 32 | |
| -rw-r--r-- | sample/openssl/echo_cli.rb | 2 | |
| -rw-r--r-- | sample/openssl/echo_svr.rb | 8 | |
| -rw-r--r-- | sample/openssl/gen_csr.rb | 14 | |
| -rw-r--r-- | sample/openssl/smime_read.rb | 11 | |
| -rw-r--r-- | sample/openssl/smime_write.rb | 15 | |
| -rwxr-xr-x[-rw-r--r--] | sample/optparse/opttest.rb | 70 | |
| -rw-r--r-- | sample/philos.rb | 3 | |
| -rw-r--r-- | sample/pstore.rb | 19 | |
| -rw-r--r-- | sample/pty/expect_sample.rb | 16 | |
| -rw-r--r-- | sample/pty/script.rb | 2 | |
| -rw-r--r-- | sample/pty/shl.rb | 47 | |
| -rw-r--r-- | sample/rcs.awk | 54 | |
| -rw-r--r-- | sample/rinda-ring.rb | 22 | |
| -rw-r--r-- | sample/ripper/ruby2html.rb | 6 | |
| -rwxr-xr-x | sample/rss/blend.rb | 79 | |
| -rwxr-xr-x | sample/rss/convert.rb | 69 | |
| -rwxr-xr-x | sample/rss/list_description.rb | 91 | |
| -rwxr-xr-x | sample/rss/re_read.rb | 64 | |
| -rwxr-xr-x | sample/rss/rss_recent.rb | 85 | |
| -rw-r--r-- | sample/simple-bench.rb | 140 | |
| -rw-r--r-- | sample/svr.rb | 2 | |
| -rw-r--r-- | sample/tempfile.rb | 8 | |
| -rw-r--r-- | sample/test.rb | 2268 | |
| -rw-r--r-- | sample/testunit/adder.rb | 13 | |
| -rw-r--r-- | sample/testunit/subtracter.rb | 12 | |
| -rw-r--r-- | sample/testunit/tc_adder.rb | 18 | |
| -rw-r--r-- | sample/testunit/tc_subtracter.rb | 18 | |
| -rw-r--r-- | sample/testunit/ts_examples.rb | 7 | |
| -rw-r--r-- | sample/timeout.rb | 18 | |
| -rw-r--r-- | sample/trick2013/README.md | 15 | |
| -rw-r--r-- | sample/trick2013/kinaba/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2013/kinaba/entry.rb | 1 | |
| -rw-r--r-- | sample/trick2013/kinaba/remarks.markdown | 37 | |
| -rw-r--r-- | sample/trick2013/mame/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2013/mame/entry.rb | 97 | |
| -rw-r--r-- | sample/trick2013/mame/remarks.markdown | 47 | |
| -rw-r--r-- | sample/trick2013/shinh/authors.markdown | 2 | |
| -rw-r--r-- | sample/trick2013/shinh/entry.rb | 10 | |
| -rw-r--r-- | sample/trick2013/shinh/remarks.markdown | 4 | |
| -rw-r--r-- | sample/trick2013/yhara/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2013/yhara/entry.rb | 28 | |
| -rw-r--r-- | sample/trick2013/yhara/remarks.en.markdown | 23 | |
| -rw-r--r-- | sample/trick2013/yhara/remarks.markdown | 24 | |
| -rw-r--r-- | sample/trick2015/README.md | 16 | |
| -rw-r--r-- | sample/trick2015/eregon/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2015/eregon/entry.rb | 16 | |
| -rw-r--r-- | sample/trick2015/eregon/remarks.markdown | 70 | |
| -rw-r--r-- | sample/trick2015/kinaba/authors.markdown | 4 | |
| -rw-r--r-- | sample/trick2015/kinaba/entry.rb | 150 | |
| -rw-r--r-- | sample/trick2015/kinaba/remarks.markdown | 85 | |
| -rw-r--r-- | sample/trick2015/ksk_1/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2015/ksk_1/entry.rb | 1 | |
| -rw-r--r-- | sample/trick2015/ksk_1/remarks.markdown | 120 | |
| -rw-r--r-- | sample/trick2015/ksk_2/abnormal.cnf | 6 | |
| -rw-r--r-- | sample/trick2015/ksk_2/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2015/ksk_2/entry.rb | 1 | |
| -rw-r--r-- | sample/trick2015/ksk_2/quinn.cnf | 21 | |
| -rw-r--r-- | sample/trick2015/ksk_2/remarks.markdown | 204 | |
| -rw-r--r-- | sample/trick2015/ksk_2/sample.cnf | 9 | |
| -rw-r--r-- | sample/trick2015/ksk_2/uf20-01.cnf | 99 | |
| -rw-r--r-- | sample/trick2015/ksk_2/unsat.cnf | 11 | |
| -rw-r--r-- | sample/trick2015/monae/authors.markdown | 1 | |
| -rw-r--r-- | sample/trick2015/monae/entry.rb | 26 | |
| -rw-r--r-- | sample/trick2015/monae/remarks.markdown | 25 | |
| -rw-r--r-- | sample/trick2018/01-kinaba/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2018/01-kinaba/entry.rb | 8 | |
| -rw-r--r-- | sample/trick2018/01-kinaba/remarks.markdown | 55 | |
| -rw-r--r-- | sample/trick2018/02-mame/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2018/02-mame/entry.rb | 15 | |
| -rw-r--r-- | sample/trick2018/02-mame/remarks.markdown | 16 | |
| -rw-r--r-- | sample/trick2018/03-tompng/Gemfile | 2 | |
| -rw-r--r-- | sample/trick2018/03-tompng/Gemfile.lock | 13 | |
| -rw-r--r-- | sample/trick2018/03-tompng/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2018/03-tompng/entry.rb | 31 | |
| -rw-r--r-- | sample/trick2018/03-tompng/output.txt | 44 | |
| -rw-r--r-- | sample/trick2018/03-tompng/remarks.markdown | 19 | |
| -rw-r--r-- | sample/trick2018/03-tompng/trick.png | bin | 0 -> 5661 bytes |
| -rw-r--r-- | sample/trick2018/04-colin/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2018/04-colin/entry.rb | 2 | |
| -rw-r--r-- | sample/trick2018/04-colin/remarks.markdown | 62 | |
| -rw-r--r-- | sample/trick2018/05-tompng/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2018/05-tompng/entry.rb | 41 | |
| -rw-r--r-- | sample/trick2018/05-tompng/preview_of_output.png | bin | 0 -> 66800 bytes |
| -rw-r--r-- | sample/trick2018/05-tompng/remarks.markdown | 31 | |
| -rw-r--r-- | sample/trick2018/README.md | 16 | |
| -rw-r--r-- | sample/trick2022/01-tompng/Gemfile | 2 | |
| -rw-r--r-- | sample/trick2022/01-tompng/Gemfile.lock | 13 | |
| -rw-r--r-- | sample/trick2022/01-tompng/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2022/01-tompng/entry.rb | 40 | |
| -rw-r--r-- | sample/trick2022/01-tompng/remarks.markdown | 51 | |
| -rw-r--r-- | sample/trick2022/02-tompng/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2022/02-tompng/entry.rb | 32 | |
| -rw-r--r-- | sample/trick2022/02-tompng/remarks.markdown | 32 | |
| -rw-r--r-- | sample/trick2022/03-mame/authors.markdown | 3 | |
| -rw-r--r-- | sample/trick2022/03-mame/entry.rb | 27 | |
| -rw-r--r-- | sample/trick2022/03-mame/remarks.markdown | 96 | |
| -rw-r--r-- | sample/trick2022/03-mame/test.txt | 13 | |
| -rw-r--r-- | sample/trick2022/README.md | 14 | |
| -rw-r--r-- | sample/trojan.rb | 4 | |
| -rw-r--r-- | sample/uumerge.rb | 2 | |
| -rw-r--r-- | sample/weakref.rb | 9 | |
| -rw-r--r-- | sample/webrick/demo-app.rb | 66 | |
| -rw-r--r-- | sample/webrick/demo-multipart.cgi | 12 | |
| -rw-r--r-- | sample/webrick/demo-servlet.rb | 6 | |
| -rw-r--r-- | sample/webrick/demo-urlencoded.cgi | 12 | |
| -rw-r--r-- | sample/webrick/hello.cgi | 11 | |
| -rw-r--r-- | sample/webrick/hello.rb | 8 | |
| -rw-r--r-- | sample/webrick/httpd.rb | 23 | |
| -rw-r--r-- | sample/webrick/httpproxy.rb | 26 | |
| -rw-r--r-- | sample/webrick/httpsd.rb | 33 | |
| -rw-r--r-- | scheduler.c | 687 | |
| -rw-r--r-- | shape.c | 825 | |
| -rw-r--r-- | shape.h | 232 | |
| -rw-r--r-- | signal.c | 1464 | |
| -rw-r--r-- | siphash.c | 493 | |
| -rw-r--r-- | siphash.h | 48 | |
| -rw-r--r-- | sparc.c | 40 | |
| -rw-r--r-- | spec/README | 30 | |
| -rw-r--r-- | spec/README.md | 160 | |
| -rw-r--r-- | spec/bundler/bundler/build_metadata_spec.rb | 49 | |
| -rw-r--r-- | spec/bundler/bundler/bundler_spec.rb | 378 | |
| -rw-r--r-- | spec/bundler/bundler/cli_spec.rb | 262 | |
| -rw-r--r-- | spec/bundler/bundler/compact_index_client/updater_spec.rb | 59 | |
| -rw-r--r-- | spec/bundler/bundler/definition_spec.rb | 292 | |
| -rw-r--r-- | spec/bundler/bundler/dependency_spec.rb | 157 | |
| -rw-r--r-- | spec/bundler/bundler/digest_spec.rb | 24 | |
| -rw-r--r-- | spec/bundler/bundler/dsl_spec.rb | 308 | |
| -rw-r--r-- | spec/bundler/bundler/endpoint_specification_spec.rb | 83 | |
| -rw-r--r-- | spec/bundler/bundler/env_spec.rb | 236 | |
| -rw-r--r-- | spec/bundler/bundler/environment_preserver_spec.rb | 79 | |
| -rw-r--r-- | spec/bundler/bundler/fetcher/base_spec.rb | 76 | |
| -rw-r--r-- | spec/bundler/bundler/fetcher/compact_index_spec.rb | 109 | |
| -rw-r--r-- | spec/bundler/bundler/fetcher/dependency_spec.rb | 283 | |
| -rw-r--r-- | spec/bundler/bundler/fetcher/downloader_spec.rb | 255 | |
| -rw-r--r-- | spec/bundler/bundler/fetcher/index_spec.rb | 82 | |
| -rw-r--r-- | spec/bundler/bundler/fetcher_spec.rb | 192 | |
| -rw-r--r-- | spec/bundler/bundler/friendly_errors_spec.rb | 234 | |
| -rw-r--r-- | spec/bundler/bundler/gem_helper_spec.rb | 451 | |
| -rw-r--r-- | spec/bundler/bundler/gem_version_promoter_spec.rb | 163 | |
| -rw-r--r-- | spec/bundler/bundler/index_spec.rb | 36 | |
| -rw-r--r-- | spec/bundler/bundler/installer/gem_installer_spec.rb | 50 | |
| -rw-r--r-- | spec/bundler/bundler/installer/parallel_installer_spec.rb | 46 | |
| -rw-r--r-- | spec/bundler/bundler/installer/spec_installation_spec.rb | 66 | |
| -rw-r--r-- | spec/bundler/bundler/lockfile_parser_spec.rb | 153 | |
| -rw-r--r-- | spec/bundler/bundler/mirror_spec.rb | 331 | |
| -rw-r--r-- | spec/bundler/bundler/plugin/api/source_spec.rb | 88 | |
| -rw-r--r-- | spec/bundler/bundler/plugin/api_spec.rb | 83 | |
| -rw-r--r-- | spec/bundler/bundler/plugin/dsl_spec.rb | 38 | |
| -rw-r--r-- | spec/bundler/bundler/plugin/events_spec.rb | 22 | |
| -rw-r--r-- | spec/bundler/bundler/plugin/index_spec.rb | 204 | |
| -rw-r--r-- | spec/bundler/bundler/plugin/installer_spec.rb | 131 | |
| -rw-r--r-- | spec/bundler/bundler/plugin/source_list_spec.rb | 25 | |
| -rw-r--r-- | spec/bundler/bundler/plugin_spec.rb | 337 | |
| -rw-r--r-- | spec/bundler/bundler/remote_specification_spec.rb | 187 | |
| -rw-r--r-- | spec/bundler/bundler/resolver/candidate_spec.rb | 21 | |
| -rw-r--r-- | spec/bundler/bundler/retry_spec.rb | 81 | |
| -rw-r--r-- | spec/bundler/bundler/ruby_dsl_spec.rb | 120 | |
| -rw-r--r-- | spec/bundler/bundler/ruby_version_spec.rb | 500 | |
| -rw-r--r-- | spec/bundler/bundler/rubygems_integration_spec.rb | 104 | |
| -rw-r--r-- | spec/bundler/bundler/settings/validator_spec.rb | 111 | |
| -rw-r--r-- | spec/bundler/bundler/settings_spec.rb | 337 | |
| -rw-r--r-- | spec/bundler/bundler/shared_helpers_spec.rb | 506 | |
| -rw-r--r-- | spec/bundler/bundler/source/git/git_proxy_spec.rb | 150 | |
| -rw-r--r-- | spec/bundler/bundler/source/git_spec.rb | 73 | |
| -rw-r--r-- | spec/bundler/bundler/source/path_spec.rb | 31 | |
| -rw-r--r-- | spec/bundler/bundler/source/rubygems/remote_spec.rb | 172 | |
| -rw-r--r-- | spec/bundler/bundler/source/rubygems_spec.rb | 47 | |
| -rw-r--r-- | spec/bundler/bundler/source_list_spec.rb | 459 | |
| -rw-r--r-- | spec/bundler/bundler/source_spec.rb | 174 | |
| -rw-r--r-- | spec/bundler/bundler/spec_set_spec.rb | 77 | |
| -rw-r--r-- | spec/bundler/bundler/stub_specification_spec.rb | 47 | |
| -rw-r--r-- | spec/bundler/bundler/ui/shell_spec.rb | 60 | |
| -rw-r--r-- | spec/bundler/bundler/ui_spec.rb | 41 | |
| -rw-r--r-- | spec/bundler/bundler/uri_credentials_filter_spec.rb | 127 | |
| -rw-r--r-- | spec/bundler/bundler/worker_spec.rb | 69 | |
| -rw-r--r-- | spec/bundler/bundler/yaml_serializer_spec.rb | 194 | |
| -rw-r--r-- | spec/bundler/cache/cache_path_spec.rb | 32 | |
| -rw-r--r-- | spec/bundler/cache/gems_spec.rb | 327 | |
| -rw-r--r-- | spec/bundler/cache/git_spec.rb | 276 | |
| -rw-r--r-- | spec/bundler/cache/path_spec.rb | 169 | |
| -rw-r--r-- | spec/bundler/cache/platform_spec.rb | 49 | |
| -rw-r--r-- | spec/bundler/commands/add_spec.rb | 305 | |
| -rw-r--r-- | spec/bundler/commands/binstubs_spec.rb | 556 | |
| -rw-r--r-- | spec/bundler/commands/cache_spec.rb | 428 | |
| -rw-r--r-- | spec/bundler/commands/check_spec.rb | 554 | |
| -rw-r--r-- | spec/bundler/commands/clean_spec.rb | 916 | |
| -rw-r--r-- | spec/bundler/commands/config_spec.rb | 580 | |
| -rw-r--r-- | spec/bundler/commands/console_spec.rb | 141 | |
| -rw-r--r-- | spec/bundler/commands/doctor_spec.rb | 146 | |
| -rw-r--r-- | spec/bundler/commands/exec_spec.rb | 1254 | |
| -rw-r--r-- | spec/bundler/commands/fund_spec.rb | 82 | |
| -rw-r--r-- | spec/bundler/commands/help_spec.rb | 90 | |
| -rw-r--r-- | spec/bundler/commands/info_spec.rb | 249 | |
| -rw-r--r-- | spec/bundler/commands/init_spec.rb | 207 | |
| -rw-r--r-- | spec/bundler/commands/inject_spec.rb | 117 | |
| -rw-r--r-- | spec/bundler/commands/install_spec.rb | 1106 | |
| -rw-r--r-- | spec/bundler/commands/issue_spec.rb | 16 | |
| -rw-r--r-- | spec/bundler/commands/licenses_spec.rb | 37 | |
| -rw-r--r-- | spec/bundler/commands/list_spec.rb | 195 | |
| -rw-r--r-- | spec/bundler/commands/lock_spec.rb | 1273 | |
| -rw-r--r-- | spec/bundler/commands/newgem_spec.rb | 1662 | |
| -rw-r--r-- | spec/bundler/commands/open_spec.rb | 176 | |
| -rw-r--r-- | spec/bundler/commands/outdated_spec.rb | 1368 | |
| -rw-r--r-- | spec/bundler/commands/platform_spec.rb | 1307 | |
| -rw-r--r-- | spec/bundler/commands/post_bundle_message_spec.rb | 205 | |
| -rw-r--r-- | spec/bundler/commands/pristine_spec.rb | 221 | |
| -rw-r--r-- | spec/bundler/commands/remove_spec.rb | 732 | |
| -rw-r--r-- | spec/bundler/commands/show_spec.rb | 224 | |
| -rw-r--r-- | spec/bundler/commands/update_spec.rb | 1715 | |
| -rw-r--r-- | spec/bundler/commands/version_spec.rb | 47 | |
| -rw-r--r-- | spec/bundler/commands/viz_spec.rb | 144 | |
| -rw-r--r-- | spec/bundler/install/allow_offline_install_spec.rb | 99 | |
| -rw-r--r-- | spec/bundler/install/binstubs_spec.rb | 49 | |
| -rw-r--r-- | spec/bundler/install/bundler_spec.rb | 268 | |
| -rw-r--r-- | spec/bundler/install/deploy_spec.rb | 550 | |
| -rw-r--r-- | spec/bundler/install/failure_spec.rb | 51 | |
| -rw-r--r-- | spec/bundler/install/gemfile/eval_gemfile_spec.rb | 122 | |
| -rw-r--r-- | spec/bundler/install/gemfile/force_ruby_platform_spec.rb | 118 | |
| -rw-r--r-- | spec/bundler/install/gemfile/gemspec_spec.rb | 697 | |
| -rw-r--r-- | spec/bundler/install/gemfile/git_spec.rb | 1630 | |
| -rw-r--r-- | spec/bundler/install/gemfile/groups_spec.rb | 403 | |
| -rw-r--r-- | spec/bundler/install/gemfile/install_if_spec.rb | 44 | |
| -rw-r--r-- | spec/bundler/install/gemfile/lockfile_spec.rb | 48 | |
| -rw-r--r-- | spec/bundler/install/gemfile/path_spec.rb | 984 | |
| -rw-r--r-- | spec/bundler/install/gemfile/platform_spec.rb | 618 | |
| -rw-r--r-- | spec/bundler/install/gemfile/ruby_spec.rb | 123 | |
| -rw-r--r-- | spec/bundler/install/gemfile/sources_spec.rb | 1672 | |
| -rw-r--r-- | spec/bundler/install/gemfile/specific_platform_spec.rb | 971 | |
| -rw-r--r-- | spec/bundler/install/gemfile_spec.rb | 118 | |
| -rw-r--r-- | spec/bundler/install/gems/compact_index_spec.rb | 954 | |
| -rw-r--r-- | spec/bundler/install/gems/dependency_api_spec.rb | 759 | |
| -rw-r--r-- | spec/bundler/install/gems/env_spec.rb | 107 | |
| -rw-r--r-- | spec/bundler/install/gems/flex_spec.rb | 370 | |
| -rw-r--r-- | spec/bundler/install/gems/fund_spec.rb | 164 | |
| -rw-r--r-- | spec/bundler/install/gems/mirror_spec.rb | 39 | |
| -rw-r--r-- | spec/bundler/install/gems/native_extensions_spec.rb | 188 | |
| -rw-r--r-- | spec/bundler/install/gems/post_install_spec.rb | 150 | |
| -rw-r--r-- | spec/bundler/install/gems/resolving_spec.rb | 600 | |
| -rw-r--r-- | spec/bundler/install/gems/standalone_spec.rb | 515 | |
| -rw-r--r-- | spec/bundler/install/gems/win32_spec.rb | 25 | |
| -rw-r--r-- | spec/bundler/install/gemspecs_spec.rb | 161 | |
| -rw-r--r-- | spec/bundler/install/git_spec.rb | 174 | |
| -rw-r--r-- | spec/bundler/install/global_cache_spec.rb | 254 | |
| -rw-r--r-- | spec/bundler/install/path_spec.rb | 226 | |
| -rw-r--r-- | spec/bundler/install/prereleases_spec.rb | 54 | |
| -rw-r--r-- | spec/bundler/install/process_lock_spec.rb | 57 | |
| -rw-r--r-- | spec/bundler/install/redownload_spec.rb | 91 | |
| -rw-r--r-- | spec/bundler/install/security_policy_spec.rb | 72 | |
| -rw-r--r-- | spec/bundler/install/yanked_spec.rb | 233 | |
| -rw-r--r-- | spec/bundler/lock/git_spec.rb | 162 | |
| -rw-r--r-- | spec/bundler/lock/lockfile_spec.rb | 1608 | |
| -rw-r--r-- | spec/bundler/other/cli_dispatch_spec.rb | 20 | |
| -rw-r--r-- | spec/bundler/other/ext_spec.rb | 65 | |
| -rw-r--r-- | spec/bundler/other/major_deprecation_spec.rb | 649 | |
| -rw-r--r-- | spec/bundler/plugins/command_spec.rb | 78 | |
| -rw-r--r-- | spec/bundler/plugins/hook_spec.rb | 109 | |
| -rw-r--r-- | spec/bundler/plugins/install_spec.rb | 381 | |
| -rw-r--r-- | spec/bundler/plugins/list_spec.rb | 60 | |
| -rw-r--r-- | spec/bundler/plugins/source/example_spec.rb | 452 | |
| -rw-r--r-- | spec/bundler/plugins/source_spec.rb | 111 | |
| -rw-r--r-- | spec/bundler/plugins/uninstall_spec.rb | 49 | |
| -rw-r--r-- | spec/bundler/quality_es_spec.rb | 61 | |
| -rw-r--r-- | spec/bundler/quality_spec.rb | 245 | |
| -rw-r--r-- | spec/bundler/realworld/dependency_api_spec.rb | 46 | |
| -rw-r--r-- | spec/bundler/realworld/double_check_spec.rb | 40 | |
| -rw-r--r-- | spec/bundler/realworld/edgecases_spec.rb | 516 | |
| -rw-r--r-- | spec/bundler/realworld/ffi_spec.rb | 57 | |
| -rw-r--r-- | spec/bundler/realworld/fixtures/warbler/.gitignore | 1 | |
| -rw-r--r-- | spec/bundler/realworld/fixtures/warbler/Gemfile | 7 | |
| -rw-r--r-- | spec/bundler/realworld/fixtures/warbler/Gemfile.lock | 30 | |
| -rw-r--r-- | spec/bundler/realworld/fixtures/warbler/bin/warbler-example.rb | 3 | |
| -rw-r--r-- | spec/bundler/realworld/fixtures/warbler/demo/demo.gemspec | 10 | |
| -rw-r--r-- | spec/bundler/realworld/gemfile_source_header_spec.rb | 53 | |
| -rw-r--r-- | spec/bundler/realworld/git_spec.rb | 11 | |
| -rw-r--r-- | spec/bundler/realworld/mirror_probe_spec.rb | 131 | |
| -rw-r--r-- | spec/bundler/realworld/parallel_spec.rb | 66 | |
| -rw-r--r-- | spec/bundler/realworld/slow_perf_spec.rb | 33 | |
| -rw-r--r-- | spec/bundler/resolver/basic_spec.rb | 350 | |
| -rw-r--r-- | spec/bundler/resolver/platform_spec.rb | 427 | |
| -rw-r--r-- | spec/bundler/runtime/executable_spec.rb | 169 | |
| -rw-r--r-- | spec/bundler/runtime/gem_tasks_spec.rb | 106 | |
| -rw-r--r-- | spec/bundler/runtime/inline_spec.rb | 626 | |
| -rw-r--r-- | spec/bundler/runtime/load_spec.rb | 113 | |
| -rw-r--r-- | spec/bundler/runtime/platform_spec.rb | 464 | |
| -rw-r--r-- | spec/bundler/runtime/require_spec.rb | 465 | |
| -rw-r--r-- | spec/bundler/runtime/self_management_spec.rb | 126 | |
| -rw-r--r-- | spec/bundler/runtime/setup_spec.rb | 1557 | |
| -rw-r--r-- | spec/bundler/runtime/with_unbundled_env_spec.rb | 302 | |
| -rw-r--r-- | spec/bundler/spec_helper.rb | 119 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index.rb | 6 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_api_missing.rb | 13 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_basic_authentication.rb | 15 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_checksum_mismatch.rb | 16 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_concurrent_download.rb | 32 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_creds_diff_host.rb | 39 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_extra.rb | 6 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_extra_api.rb | 6 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_extra_api_missing.rb | 17 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_extra_missing.rb | 17 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_forbidden.rb | 13 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_host_redirect.rb | 21 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_no_gem.rb | 13 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_partial_update.rb | 38 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_partial_update_no_etag_not_incremental.rb | 40 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_precompiled_before.rb | 25 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_range_not_satisfiable.rb | 34 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_rate_limited.rb | 48 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_redirects.rb | 21 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_strict_basic_authentication.rb | 20 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_wrong_dependencies.rb | 17 | |
| -rw-r--r-- | spec/bundler/support/artifice/compact_index_wrong_gem_checksum.rb | 20 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint.rb | 6 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_500.rb | 17 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_api_forbidden.rb | 13 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_basic_authentication.rb | 15 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_creds_diff_host.rb | 39 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_extra.rb | 33 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_extra_api.rb | 34 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_extra_missing.rb | 17 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_fallback.rb | 19 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_host_redirect.rb | 17 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_marshal_fail.rb | 6 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_marshal_fail_basic_authentication.rb | 15 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_mirror_source.rb | 17 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_redirect.rb | 17 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_strict_basic_authentication.rb | 20 | |
| -rw-r--r-- | spec/bundler/support/artifice/endpoint_timeout.rb | 15 | |
| -rw-r--r-- | spec/bundler/support/artifice/fail.rb | 29 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/artifice.rb | 30 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/compact_index.rb | 118 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/compact_index_extra.rb | 33 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/compact_index_extra_api.rb | 48 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/endpoint.rb | 112 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/endpoint_extra.rb | 29 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/endpoint_fallback.rb | 15 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/endpoint_marshal_fail.rb | 9 | |
| -rw-r--r-- | spec/bundler/support/artifice/helpers/rack_request.rb | 100 | |
| -rw-r--r-- | spec/bundler/support/artifice/used_cassettes.txt | 20908 | |
| -rw-r--r-- | spec/bundler/support/artifice/vcr.rb | 152 | |
| -rw-r--r-- | spec/bundler/support/artifice/windows.rb | 45 | |
| -rw-r--r-- | spec/bundler/support/build_metadata.rb | 49 | |
| -rw-r--r-- | spec/bundler/support/builders.rb | 677 | |
| -rw-r--r-- | spec/bundler/support/bundle.rb | 10 | |
| -rw-r--r-- | spec/bundler/support/command_execution.rb | 33 | |
| -rw-r--r-- | spec/bundler/support/filters.rb | 38 | |
| -rw-r--r-- | spec/bundler/support/hax.rb | 53 | |
| -rw-r--r-- | spec/bundler/support/helpers.rb | 597 | |
| -rw-r--r-- | spec/bundler/support/indexes.rb | 419 | |
| -rw-r--r-- | spec/bundler/support/matchers.rb | 237 | |
| -rw-r--r-- | spec/bundler/support/path.rb | 311 | |
| -rw-r--r-- | spec/bundler/support/permissions.rb | 12 | |
| -rw-r--r-- | spec/bundler/support/platforms.rb | 106 | |
| -rw-r--r-- | spec/bundler/support/rubygems_ext.rb | 177 | |
| -rw-r--r-- | spec/bundler/support/rubygems_version_manager.rb | 120 | |
| -rw-r--r-- | spec/bundler/support/silent_logger.rb | 10 | |
| -rw-r--r-- | spec/bundler/support/switch_rubygems.rb | 4 | |
| -rw-r--r-- | spec/bundler/support/the_bundle.rb | 35 | |
| -rw-r--r-- | spec/bundler/update/gemfile_spec.rb | 47 | |
| -rw-r--r-- | spec/bundler/update/gems/fund_spec.rb | 50 | |
| -rw-r--r-- | spec/bundler/update/gems/post_install_spec.rb | 76 | |
| -rw-r--r-- | spec/bundler/update/git_spec.rb | 336 | |
| -rw-r--r-- | spec/bundler/update/path_spec.rb | 19 | |
| -rw-r--r-- | spec/bundler/update/redownload_spec.rb | 34 | |
| -rw-r--r-- | spec/default.mspec | 74 | |
| -rw-r--r-- | spec/mspec/.rspec | 1 | |
| -rw-r--r-- | spec/mspec/Gemfile | 4 | |
| -rw-r--r-- | spec/mspec/Gemfile.lock | 26 | |
| -rw-r--r-- | spec/mspec/LICENSE | 22 | |
| -rw-r--r-- | spec/mspec/README.md | 84 | |
| -rw-r--r-- | spec/mspec/Rakefile | 6 | |
| -rwxr-xr-x | spec/mspec/bin/mkspec | 7 | |
| -rwxr-xr-x | spec/mspec/bin/mkspec.bat | 1 | |
| -rwxr-xr-x | spec/mspec/bin/mspec | 7 | |
| -rwxr-xr-x | spec/mspec/bin/mspec-ci | 7 | |
| -rwxr-xr-x | spec/mspec/bin/mspec-ci.bat | 1 | |
| -rwxr-xr-x | spec/mspec/bin/mspec-run | 7 | |
| -rwxr-xr-x | spec/mspec/bin/mspec-run.bat | 1 | |
| -rwxr-xr-x | spec/mspec/bin/mspec-tag | 7 | |
| -rwxr-xr-x | spec/mspec/bin/mspec-tag.bat | 1 | |
| -rwxr-xr-x | spec/mspec/bin/mspec.bat | 1 | |
| -rw-r--r-- | spec/mspec/lib/mspec.rb | 8 | |
| -rwxr-xr-x | spec/mspec/lib/mspec/commands/mkspec.rb | 145 | |
| -rw-r--r-- | spec/mspec/lib/mspec/commands/mspec-ci.rb | 79 | |
| -rw-r--r-- | spec/mspec/lib/mspec/commands/mspec-run.rb | 87 | |
| -rw-r--r-- | spec/mspec/lib/mspec/commands/mspec-tag.rb | 133 | |
| -rwxr-xr-x | spec/mspec/lib/mspec/commands/mspec.rb | 120 | |
| -rw-r--r-- | spec/mspec/lib/mspec/expectations.rb | 2 | |
| -rw-r--r-- | spec/mspec/lib/mspec/expectations/expectations.rb | 39 | |
| -rw-r--r-- | spec/mspec/lib/mspec/expectations/should.rb | 41 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards.rb | 11 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/block_device.rb | 16 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/bug.rb | 29 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/conflict.rb | 23 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/endian.rb | 25 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/feature.rb | 45 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/guard.rb | 141 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/platform.rb | 104 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/quarantine.rb | 11 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/superuser.rb | 25 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/support.rb | 14 | |
| -rw-r--r-- | spec/mspec/lib/mspec/guards/version.rb | 72 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers.rb | 13 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/argf.rb | 35 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/argv.rb | 44 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/datetime.rb | 48 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/fixture.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/flunk.rb | 3 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/fs.rb | 64 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/io.rb | 87 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/mock_to_path.rb | 6 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/numeric.rb | 80 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/ruby_exe.rb | 189 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/scratch.rb | 21 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/tmp.rb | 48 | |
| -rw-r--r-- | spec/mspec/lib/mspec/helpers/warning.rb | 21 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers.rb | 37 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/base.rb | 79 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_an_instance_of.rb | 26 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_ancestor_of.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_close.rb | 29 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_computed_by.rb | 37 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_empty.rb | 20 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_false.rb | 20 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_kind_of.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_nan.rb | 20 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_nil.rb | 20 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_true.rb | 20 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/be_true_or_false.rb | 20 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/block_caller.rb | 37 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/complain.rb | 71 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/eql.rb | 26 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/equal.rb | 26 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/equal_element.rb | 78 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_class_variable.rb | 12 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_constant.rb | 12 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_instance_method.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_instance_variable.rb | 12 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_method.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_private_instance_method.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_private_method.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_protected_instance_method.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_public_instance_method.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/have_singleton_method.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/include.rb | 31 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/include_any_of.rb | 29 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/infinity.rb | 28 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/match_yaml.rb | 50 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/method.rb | 10 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/output.rb | 67 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/output_to_fd.rb | 71 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/raise_error.rb | 93 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/respond_to.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/signed_zero.rb | 28 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/skip.rb | 5 | |
| -rw-r--r-- | spec/mspec/lib/mspec/matchers/variable.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/mocks.rb | 3 | |
| -rw-r--r-- | spec/mspec/lib/mspec/mocks/mock.rb | 212 | |
| -rw-r--r-- | spec/mspec/lib/mspec/mocks/object.rb | 28 | |
| -rw-r--r-- | spec/mspec/lib/mspec/mocks/proxy.rb | 186 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner.rb | 12 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions.rb | 6 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/constants_leak_checker.rb | 84 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/filter.rb | 40 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/leakchecker.rb | 319 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/profile.rb | 60 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/tag.rb | 133 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/taglist.rb | 56 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/tagpurge.rb | 56 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/tally.rb | 133 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/timeout.rb | 93 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/actions/timer.rb | 22 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/context.rb | 237 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/evaluate.rb | 54 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/example.rb | 34 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/exception.rb | 54 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/filters.rb | 4 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/filters/match.rb | 18 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/filters/profile.rb | 54 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/filters/regexp.rb | 23 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/filters/tag.rb | 29 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters.rb | 13 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/base.rb | 144 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/describe.rb | 23 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/dotted.rb | 23 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/file.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/html.rb | 81 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/junit.rb | 87 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/method.rb | 95 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/multi.rb | 47 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/profile.rb | 18 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/specdoc.rb | 41 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/spinner.rb | 111 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/stats.rb | 57 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/summary.rb | 4 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/unit.rb | 20 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/yaml.rb | 38 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/mspec.rb | 422 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/object.rb | 26 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/parallel.rb | 98 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/shared.rb | 14 | |
| -rw-r--r-- | spec/mspec/lib/mspec/runner/tag.rb | 38 | |
| -rw-r--r-- | spec/mspec/lib/mspec/utils/deprecate.rb | 6 | |
| -rw-r--r-- | spec/mspec/lib/mspec/utils/format.rb | 24 | |
| -rw-r--r-- | spec/mspec/lib/mspec/utils/name_map.rb | 126 | |
| -rw-r--r-- | spec/mspec/lib/mspec/utils/options.rb | 504 | |
| -rw-r--r-- | spec/mspec/lib/mspec/utils/script.rb | 299 | |
| -rw-r--r-- | spec/mspec/lib/mspec/utils/version.rb | 52 | |
| -rw-r--r-- | spec/mspec/lib/mspec/utils/warnings.rb | 53 | |
| -rw-r--r-- | spec/mspec/lib/mspec/version.rb | 5 | |
| -rw-r--r-- | spec/mspec/spec/commands/fixtures/four.txt | 0 | |
| -rw-r--r-- | spec/mspec/spec/commands/fixtures/level2/three_spec.rb | 1 | |
| -rw-r--r-- | spec/mspec/spec/commands/fixtures/one_spec.rb | 1 | |
| -rw-r--r-- | spec/mspec/spec/commands/fixtures/three.rb | 1 | |
| -rw-r--r-- | spec/mspec/spec/commands/fixtures/two_spec.rb | 1 | |
| -rw-r--r-- | spec/mspec/spec/commands/mkspec_spec.rb | 363 | |
| -rw-r--r-- | spec/mspec/spec/commands/mspec_ci_spec.rb | 150 | |
| -rw-r--r-- | spec/mspec/spec/commands/mspec_run_spec.rb | 173 | |
| -rw-r--r-- | spec/mspec/spec/commands/mspec_spec.rb | 207 | |
| -rw-r--r-- | spec/mspec/spec/commands/mspec_tag_spec.rb | 414 | |
| -rw-r--r-- | spec/mspec/spec/expectations/expectations_spec.rb | 29 | |
| -rw-r--r-- | spec/mspec/spec/expectations/should_spec.rb | 61 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/a_spec.rb | 15 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/b_spec.rb | 7 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/chatty_spec.rb | 8 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/config.mspec | 8 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/die_spec.rb | 7 | |
| -rwxr-xr-x | spec/mspec/spec/fixtures/my_ruby | 4 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/object_methods_spec.rb | 8 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/print_interpreter_spec.rb | 4 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/should.rb | 75 | |
| -rw-r--r-- | spec/mspec/spec/fixtures/tagging_spec.rb | 16 | |
| -rw-r--r-- | spec/mspec/spec/guards/block_device_spec.rb | 46 | |
| -rw-r--r-- | spec/mspec/spec/guards/bug_spec.rb | 151 | |
| -rw-r--r-- | spec/mspec/spec/guards/conflict_spec.rb | 53 | |
| -rw-r--r-- | spec/mspec/spec/guards/endian_spec.rb | 55 | |
| -rw-r--r-- | spec/mspec/spec/guards/feature_spec.rb | 120 | |
| -rw-r--r-- | spec/mspec/spec/guards/guard_spec.rb | 421 | |
| -rw-r--r-- | spec/mspec/spec/guards/platform_spec.rb | 337 | |
| -rw-r--r-- | spec/mspec/spec/guards/quarantine_spec.rb | 35 | |
| -rw-r--r-- | spec/mspec/spec/guards/superuser_spec.rb | 35 | |
| -rw-r--r-- | spec/mspec/spec/guards/support_spec.rb | 54 | |
| -rw-r--r-- | spec/mspec/spec/guards/user_spec.rb | 20 | |
| -rw-r--r-- | spec/mspec/spec/guards/version_spec.rb | 112 | |
| -rw-r--r-- | spec/mspec/spec/helpers/argf_spec.rb | 37 | |
| -rw-r--r-- | spec/mspec/spec/helpers/argv_spec.rb | 27 | |
| -rw-r--r-- | spec/mspec/spec/helpers/datetime_spec.rb | 44 | |
| -rw-r--r-- | spec/mspec/spec/helpers/fixture_spec.rb | 25 | |
| -rw-r--r-- | spec/mspec/spec/helpers/flunk_spec.rb | 20 | |
| -rw-r--r-- | spec/mspec/spec/helpers/fs_spec.rb | 195 | |
| -rw-r--r-- | spec/mspec/spec/helpers/io_spec.rb | 136 | |
| -rw-r--r-- | spec/mspec/spec/helpers/mock_to_path_spec.rb | 23 | |
| -rw-r--r-- | spec/mspec/spec/helpers/numeric_spec.rb | 31 | |
| -rw-r--r-- | spec/mspec/spec/helpers/ruby_exe_spec.rb | 256 | |
| -rw-r--r-- | spec/mspec/spec/helpers/scratch_spec.rb | 24 | |
| -rw-r--r-- | spec/mspec/spec/helpers/suppress_warning_spec.rb | 19 | |
| -rw-r--r-- | spec/mspec/spec/helpers/tmp_spec.rb | 27 | |
| -rw-r--r-- | spec/mspec/spec/integration/interpreter_spec.rb | 18 | |
| -rw-r--r-- | spec/mspec/spec/integration/object_methods_spec.rb | 18 | |
| -rw-r--r-- | spec/mspec/spec/integration/run_spec.rb | 71 | |
| -rw-r--r-- | spec/mspec/spec/integration/tag_spec.rb | 59 | |
| -rw-r--r-- | spec/mspec/spec/matchers/base_spec.rb | 228 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_an_instance_of_spec.rb | 50 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_ancestor_of_spec.rb | 28 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_close_spec.rb | 48 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_computed_by_spec.rb | 42 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_empty_spec.rb | 26 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_false_spec.rb | 28 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_kind_of_spec.rb | 31 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_nan_spec.rb | 28 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_nil_spec.rb | 27 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_true_or_false_spec.rb | 19 | |
| -rw-r--r-- | spec/mspec/spec/matchers/be_true_spec.rb | 28 | |
| -rw-r--r-- | spec/mspec/spec/matchers/block_caller_spec.rb | 13 | |
| -rw-r--r-- | spec/mspec/spec/matchers/complain_spec.rb | 102 | |
| -rw-r--r-- | spec/mspec/spec/matchers/eql_spec.rb | 33 | |
| -rw-r--r-- | spec/mspec/spec/matchers/equal_element_spec.rb | 75 | |
| -rw-r--r-- | spec/mspec/spec/matchers/equal_spec.rb | 32 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_class_variable_spec.rb | 49 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_constant_spec.rb | 37 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_instance_method_spec.rb | 53 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_instance_variable_spec.rb | 50 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_method_spec.rb | 55 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_private_instance_method_spec.rb | 57 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_private_method_spec.rb | 44 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_protected_instance_method_spec.rb | 57 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_public_instance_method_spec.rb | 53 | |
| -rw-r--r-- | spec/mspec/spec/matchers/have_singleton_method_spec.rb | 45 | |
| -rw-r--r-- | spec/mspec/spec/matchers/include_any_of_spec.rb | 42 | |
| -rw-r--r-- | spec/mspec/spec/matchers/include_spec.rb | 37 | |
| -rw-r--r-- | spec/mspec/spec/matchers/infinity_spec.rb | 34 | |
| -rw-r--r-- | spec/mspec/spec/matchers/match_yaml_spec.rb | 39 | |
| -rw-r--r-- | spec/mspec/spec/matchers/output_spec.rb | 84 | |
| -rw-r--r-- | spec/mspec/spec/matchers/output_to_fd_spec.rb | 44 | |
| -rw-r--r-- | spec/mspec/spec/matchers/raise_error_spec.rb | 183 | |
| -rw-r--r-- | spec/mspec/spec/matchers/respond_to_spec.rb | 33 | |
| -rw-r--r-- | spec/mspec/spec/matchers/signed_zero_spec.rb | 32 | |
| -rw-r--r-- | spec/mspec/spec/mocks/mock_spec.rb | 530 | |
| -rw-r--r-- | spec/mspec/spec/mocks/proxy_spec.rb | 405 | |
| -rw-r--r-- | spec/mspec/spec/runner/actions/filter_spec.rb | 84 | |
| -rw-r--r-- | spec/mspec/spec/runner/actions/tag_spec.rb | 313 | |
| -rw-r--r-- | spec/mspec/spec/runner/actions/taglist_spec.rb | 152 | |
| -rw-r--r-- | spec/mspec/spec/runner/actions/tagpurge_spec.rb | 154 | |
| -rw-r--r-- | spec/mspec/spec/runner/actions/tally_spec.rb | 355 | |
| -rw-r--r-- | spec/mspec/spec/runner/actions/timer_spec.rb | 44 | |
| -rw-r--r-- | spec/mspec/spec/runner/context_spec.rb | 1028 | |
| -rw-r--r-- | spec/mspec/spec/runner/example_spec.rb | 117 | |
| -rw-r--r-- | spec/mspec/spec/runner/exception_spec.rb | 146 | |
| -rw-r--r-- | spec/mspec/spec/runner/filters/a.yaml | 4 | |
| -rw-r--r-- | spec/mspec/spec/runner/filters/b.yaml | 11 | |
| -rw-r--r-- | spec/mspec/spec/runner/filters/match_spec.rb | 34 | |
| -rw-r--r-- | spec/mspec/spec/runner/filters/profile_spec.rb | 117 | |
| -rw-r--r-- | spec/mspec/spec/runner/filters/regexp_spec.rb | 31 | |
| -rw-r--r-- | spec/mspec/spec/runner/filters/tag_spec.rb | 92 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/describe_spec.rb | 67 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/dotted_spec.rb | 284 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/file_spec.rb | 84 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/html_spec.rb | 220 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/junit_spec.rb | 159 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/method_spec.rb | 177 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/multi_spec.rb | 68 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/specdoc_spec.rb | 106 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/spinner_spec.rb | 83 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/summary_spec.rb | 26 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/unit_spec.rb | 73 | |
| -rw-r--r-- | spec/mspec/spec/runner/formatters/yaml_spec.rb | 134 | |
| -rw-r--r-- | spec/mspec/spec/runner/mspec_spec.rb | 597 | |
| -rw-r--r-- | spec/mspec/spec/runner/shared_spec.rb | 90 | |
| -rw-r--r-- | spec/mspec/spec/runner/tag_spec.rb | 123 | |
| -rw-r--r-- | spec/mspec/spec/runner/tags.txt | 4 | |
| -rw-r--r-- | spec/mspec/spec/spec_helper.rb | 68 | |
| -rw-r--r-- | spec/mspec/spec/utils/deprecate_spec.rb | 17 | |
| -rw-r--r-- | spec/mspec/spec/utils/name_map_spec.rb | 175 | |
| -rw-r--r-- | spec/mspec/spec/utils/options_spec.rb | 1302 | |
| -rw-r--r-- | spec/mspec/spec/utils/script_spec.rb | 470 | |
| -rw-r--r-- | spec/mspec/spec/utils/version_spec.rb | 45 | |
| -rwxr-xr-x | spec/mspec/tool/find.rb | 10 | |
| -rwxr-xr-x | spec/mspec/tool/pull-latest-mspec-spec | 26 | |
| -rw-r--r-- | spec/mspec/tool/remove_old_guards.rb | 70 | |
| -rw-r--r-- | spec/mspec/tool/sync/.gitignore | 4 | |
| -rw-r--r-- | spec/mspec/tool/sync/sync-rubyspec.rb | 254 | |
| -rwxr-xr-x | spec/mspec/tool/tag_from_output.rb | 63 | |
| -rwxr-xr-x | spec/mspec/tool/wrap_with_guard.rb | 28 | |
| -rw-r--r-- | spec/ruby/.gitignore | 5 | |
| -rw-r--r-- | spec/ruby/.mspec.constants | 234 | |
| -rw-r--r-- | spec/ruby/.rubocop.yml | 185 | |
| -rw-r--r-- | spec/ruby/.rubocop_todo.yml | 137 | |
| -rw-r--r-- | spec/ruby/CONTRIBUTING.md | 295 | |
| -rw-r--r-- | spec/ruby/LICENSE | 22 | |
| -rw-r--r-- | spec/ruby/README.md | 157 | |
| -rw-r--r-- | spec/ruby/TODO | 8 | |
| -rw-r--r-- | spec/ruby/command_line/backtrace_limit_spec.rb | 48 | |
| -rw-r--r-- | spec/ruby/command_line/dash_a_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/command_line/dash_c_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/command_line/dash_d_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/command_line/dash_e_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/command_line/dash_encoding_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/command_line/dash_external_encoding_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/command_line/dash_internal_encoding_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/command_line/dash_l_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/command_line/dash_n_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/command_line/dash_p_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/command_line/dash_r_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/command_line/dash_s_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_c_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_e_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_f_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_i_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_k_spec.rb | 65 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_s_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_u_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_w_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/command_line/dash_upper_x_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/command_line/dash_v_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/command_line/dash_w_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/command_line/dash_x_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/command_line/error_message_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/command_line/feature_spec.rb | 71 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/backtrace.rb | 35 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/bad_syntax.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/bin/bad_embedded_ruby.txt | 3 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/bin/dash_s_fail | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/bin/embedded_ruby.txt | 3 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/bin/hybrid_launcher.sh | 4 | |
| -rwxr-xr-x | spec/ruby/command_line/fixtures/bin/launcher.rb | 2 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/change_directory_script.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/conditional_range.txt | 5 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/dash_s_script.rb | 12 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/debug.rb | 10 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/debug_info.rb | 11 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/freeze_flag_across_files.rb | 3 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/freeze_flag_across_files_diff_enc.rb | 3 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/freeze_flag_one_literal.rb | 2 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/freeze_flag_required.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/freeze_flag_required_diff_enc.rb | bin | 0 -> 121 bytes |
| -rw-r--r-- | spec/ruby/command_line/fixtures/freeze_flag_two_literals.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/full_names.txt | 3 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/loadpath.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/names.txt | 3 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/passwd_file.txt | 3 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/require.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/rubyopt.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/test_file.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/fixtures/verbose.rb | 1 | |
| -rw-r--r-- | spec/ruby/command_line/frozen_strings_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/command_line/rubylib_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/command_line/rubyopt_spec.rb | 185 | |
| -rw-r--r-- | spec/ruby/command_line/shared/change_directory.rb | 21 | |
| -rw-r--r-- | spec/ruby/command_line/shared/verbose.rb | 9 | |
| -rw-r--r-- | spec/ruby/command_line/syntax_error_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/argf/argf_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/argf/argv_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/argf/binmode_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/argf/bytes_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/argf/chars_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/argf/close_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/argf/closed_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/argf/codepoints_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/argf/each_byte_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/each_char_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/each_codepoint_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/each_line_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/each_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/eof_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/argf/file_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/argf/filename_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/fileno_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/fixtures/bin_file.txt | 2 | |
| -rw-r--r-- | spec/ruby/core/argf/fixtures/file1.txt | 2 | |
| -rw-r--r-- | spec/ruby/core/argf/fixtures/file2.txt | 2 | |
| -rw-r--r-- | spec/ruby/core/argf/fixtures/filename.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/argf/fixtures/lineno.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/argf/fixtures/rewind.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/argf/fixtures/stdin.txt | 2 | |
| -rw-r--r-- | spec/ruby/core/argf/getc_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/argf/gets_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/argf/lineno_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/argf/lines_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/argf/path_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/pos_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/argf/read_nonblock_spec.rb | 80 | |
| -rw-r--r-- | spec/ruby/core/argf/read_spec.rb | 85 | |
| -rw-r--r-- | spec/ruby/core/argf/readchar_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/argf/readline_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/argf/readlines_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/readpartial_spec.rb | 75 | |
| -rw-r--r-- | spec/ruby/core/argf/rewind_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/argf/seek_spec.rb | 63 | |
| -rw-r--r-- | spec/ruby/core/argf/set_encoding_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/each_byte.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/each_char.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/each_codepoint.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/each_line.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/eof.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/filename.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/fileno.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/getc.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/gets.rb | 99 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/pos.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/read.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/argf/shared/readlines.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/argf/skip_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/argf/tell_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/to_a_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/to_i_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/argf/to_io_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/argf/to_s_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/array/allocate_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/array/any_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/array/append_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/array/array_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/assoc_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/array/at_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/array/bsearch_index_spec.rb | 85 | |
| -rw-r--r-- | spec/ruby/core/array/bsearch_spec.rb | 84 | |
| -rw-r--r-- | spec/ruby/core/array/clear_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/array/clone_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/array/collect_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/array/combination_spec.rb | 74 | |
| -rw-r--r-- | spec/ruby/core/array/compact_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/array/comparison_spec.rb | 97 | |
| -rw-r--r-- | spec/ruby/core/array/concat_spec.rb | 74 | |
| -rw-r--r-- | spec/ruby/core/array/constructor_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/array/count_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/array/cycle_spec.rb | 101 | |
| -rw-r--r-- | spec/ruby/core/array/deconstruct_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/array/delete_at_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/array/delete_if_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/array/delete_spec.rb | 46 | |
| -rw-r--r-- | spec/ruby/core/array/difference_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/array/dig_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/array/drop_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/array/drop_while_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/array/dup_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/array/each_index_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/array/each_spec.rb | 77 | |
| -rw-r--r-- | spec/ruby/core/array/element_reference_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/array/element_set_spec.rb | 537 | |
| -rw-r--r-- | spec/ruby/core/array/empty_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/array/eql_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/array/equal_value_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/array/fetch_spec.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/array/fill_spec.rb | 336 | |
| -rw-r--r-- | spec/ruby/core/array/filter_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/array/find_index_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/array/first_spec.rb | 93 | |
| -rw-r--r-- | spec/ruby/core/array/fixtures/classes.rb | 584 | |
| -rw-r--r-- | spec/ruby/core/array/fixtures/encoded_strings.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/array/flatten_spec.rb | 278 | |
| -rw-r--r-- | spec/ruby/core/array/frozen_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/array/hash_spec.rb | 83 | |
| -rw-r--r-- | spec/ruby/core/array/include_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/array/index_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/array/initialize_spec.rb | 156 | |
| -rw-r--r-- | spec/ruby/core/array/insert_spec.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/array/inspect_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/intersect_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/array/intersection_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/array/join_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/array/keep_if_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/array/last_spec.rb | 87 | |
| -rw-r--r-- | spec/ruby/core/array/length_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/map_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/array/max_spec.rb | 116 | |
| -rw-r--r-- | spec/ruby/core/array/min_spec.rb | 121 | |
| -rw-r--r-- | spec/ruby/core/array/minmax_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/array/minus_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/multiply_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/array/new_spec.rb | 122 | |
| -rw-r--r-- | spec/ruby/core/array/pack/a_spec.rb | 73 | |
| -rw-r--r-- | spec/ruby/core/array/pack/at_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/array/pack/b_spec.rb | 113 | |
| -rw-r--r-- | spec/ruby/core/array/pack/buffer_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/array/pack/c_spec.rb | 85 | |
| -rw-r--r-- | spec/ruby/core/array/pack/comment_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/array/pack/d_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/array/pack/e_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/array/pack/empty_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/array/pack/f_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/array/pack/g_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/array/pack/h_spec.rb | 205 | |
| -rw-r--r-- | spec/ruby/core/array/pack/i_spec.rb | 133 | |
| -rw-r--r-- | spec/ruby/core/array/pack/j_spec.rb | 217 | |
| -rw-r--r-- | spec/ruby/core/array/pack/l_spec.rb | 221 | |
| -rw-r--r-- | spec/ruby/core/array/pack/m_spec.rb | 317 | |
| -rw-r--r-- | spec/ruby/core/array/pack/n_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/array/pack/p_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/array/pack/percent_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/pack/q_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/array/pack/s_spec.rb | 133 | |
| -rw-r--r-- | spec/ruby/core/array/pack/shared/basic.rb | 97 | |
| -rw-r--r-- | spec/ruby/core/array/pack/shared/encodings.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/array/pack/shared/float.rb | 287 | |
| -rw-r--r-- | spec/ruby/core/array/pack/shared/integer.rb | 441 | |
| -rw-r--r-- | spec/ruby/core/array/pack/shared/numeric_basic.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/array/pack/shared/string.rb | 48 | |
| -rw-r--r-- | spec/ruby/core/array/pack/shared/taint.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/array/pack/shared/unicode.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/array/pack/u_spec.rb | 140 | |
| -rw-r--r-- | spec/ruby/core/array/pack/v_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/array/pack/w_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/array/pack/x_spec.rb | 65 | |
| -rw-r--r-- | spec/ruby/core/array/pack/z_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/array/partition_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/array/permutation_spec.rb | 138 | |
| -rw-r--r-- | spec/ruby/core/array/plus_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/array/pop_spec.rb | 124 | |
| -rw-r--r-- | spec/ruby/core/array/prepend_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/product_spec.rb | 68 | |
| -rw-r--r-- | spec/ruby/core/array/push_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/rassoc_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/array/reject_spec.rb | 143 | |
| -rw-r--r-- | spec/ruby/core/array/repeated_combination_spec.rb | 84 | |
| -rw-r--r-- | spec/ruby/core/array/repeated_permutation_spec.rb | 94 | |
| -rw-r--r-- | spec/ruby/core/array/replace_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/reverse_each_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/array/reverse_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/array/rindex_spec.rb | 80 | |
| -rw-r--r-- | spec/ruby/core/array/rotate_spec.rb | 129 | |
| -rw-r--r-- | spec/ruby/core/array/sample_spec.rb | 144 | |
| -rw-r--r-- | spec/ruby/core/array/select_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/array/shared/clone.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/array/shared/collect.rb | 109 | |
| -rw-r--r-- | spec/ruby/core/array/shared/delete_if.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/array/shared/difference.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/array/shared/enumeratorize.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/array/shared/eql.rb | 92 | |
| -rw-r--r-- | spec/ruby/core/array/shared/index.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/array/shared/inspect.rb | 107 | |
| -rw-r--r-- | spec/ruby/core/array/shared/intersection.rb | 84 | |
| -rw-r--r-- | spec/ruby/core/array/shared/join.rb | 112 | |
| -rw-r--r-- | spec/ruby/core/array/shared/keep_if.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/array/shared/length.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/array/shared/push.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/array/shared/replace.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/array/shared/select.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/array/shared/slice.rb | 889 | |
| -rw-r--r-- | spec/ruby/core/array/shared/union.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/array/shared/unshift.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/array/shift_spec.rb | 120 | |
| -rw-r--r-- | spec/ruby/core/array/shuffle_spec.rb | 96 | |
| -rw-r--r-- | spec/ruby/core/array/size_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/slice_spec.rb | 246 | |
| -rw-r--r-- | spec/ruby/core/array/sort_by_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/array/sort_spec.rb | 252 | |
| -rw-r--r-- | spec/ruby/core/array/sum_spec.rb | 71 | |
| -rw-r--r-- | spec/ruby/core/array/take_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/array/take_while_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/array/to_a_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/array/to_ary_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/array/to_h_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/array/to_s_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/array/transpose_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/array/try_convert_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/array/union_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/array/uniq_spec.rb | 217 | |
| -rw-r--r-- | spec/ruby/core/array/unshift_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/array/values_at_spec.rb | 74 | |
| -rw-r--r-- | spec/ruby/core/array/zip_spec.rb | 71 | |
| -rw-r--r-- | spec/ruby/core/basicobject/__id__spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/basicobject/__send___spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/basicobject/basicobject_spec.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/basicobject/equal_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/basicobject/equal_value_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/basicobject/fixtures/classes.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/basicobject/fixtures/common.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/basicobject/fixtures/remove_method_missing.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/basicobject/fixtures/singleton_method.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/basicobject/initialize_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/basicobject/instance_eval_spec.rb | 248 | |
| -rw-r--r-- | spec/ruby/core/basicobject/instance_exec_spec.rb | 107 | |
| -rw-r--r-- | spec/ruby/core/basicobject/method_missing_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/basicobject/not_equal_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/basicobject/not_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/basicobject/singleton_method_added_spec.rb | 145 | |
| -rw-r--r-- | spec/ruby/core/basicobject/singleton_method_removed_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/basicobject/singleton_method_undefined_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/binding/clone_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/binding/dup_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/binding/eval_spec.rb | 152 | |
| -rw-r--r-- | spec/ruby/core/binding/fixtures/classes.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/binding/fixtures/irb.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/binding/fixtures/irbrc | 1 | |
| -rw-r--r-- | spec/ruby/core/binding/fixtures/location.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/binding/irb_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/binding/local_variable_defined_spec.rb | 46 | |
| -rw-r--r-- | spec/ruby/core/binding/local_variable_get_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/binding/local_variable_set_spec.rb | 71 | |
| -rw-r--r-- | spec/ruby/core/binding/local_variables_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/binding/receiver_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/binding/shared/clone.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/binding/source_location_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/builtin_constants/builtin_constants_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/class/allocate_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/class/attached_object_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/class/dup_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/class/fixtures/classes.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/class/inherited_spec.rb | 101 | |
| -rw-r--r-- | spec/ruby/core/class/initialize_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/class/new_spec.rb | 155 | |
| -rw-r--r-- | spec/ruby/core/class/subclasses_spec.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/class/superclass_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/comparable/between_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/comparable/clamp_spec.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/comparable/equal_value_spec.rb | 114 | |
| -rw-r--r-- | spec/ruby/core/comparable/fixtures/classes.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/comparable/gt_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/comparable/gte_spec.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/comparable/lt_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/comparable/lte_spec.rb | 46 | |
| -rw-r--r-- | spec/ruby/core/complex/abs2_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/complex/abs_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/angle_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/arg_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/coerce_spec.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/complex/comparison_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/complex/conj_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/conjugate_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/constants_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/complex/denominator_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/complex/divide_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/eql_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/complex/equal_value_spec.rb | 93 | |
| -rw-r--r-- | spec/ruby/core/complex/exponent_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/complex/fdiv_spec.rb | 129 | |
| -rw-r--r-- | spec/ruby/core/complex/finite_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/complex/hash_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/complex/imag_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/imaginary_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/infinite_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/complex/inspect_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/complex/integer_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/complex/magnitude_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/marshal_dump_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/complex/minus_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/complex/multiply_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/complex/negative_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/complex/numerator_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/complex/phase_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/plus_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/complex/polar_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/complex/positive_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/complex/quo_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/complex/rationalize_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/complex/real_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/complex/rect_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/complex/rectangular_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/complex/shared/abs.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/complex/shared/arg.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/complex/shared/conjugate.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/complex/shared/divide.rb | 82 | |
| -rw-r--r-- | spec/ruby/core/complex/shared/image.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/complex/shared/rect.rb | 94 | |
| -rw-r--r-- | spec/ruby/core/complex/to_c_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/complex/to_f_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/complex/to_i_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/complex/to_r_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/complex/to_s_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/complex/uminus_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/conditionvariable/broadcast_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/conditionvariable/marshal_dump_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/conditionvariable/signal_spec.rb | 77 | |
| -rw-r--r-- | spec/ruby/core/conditionvariable/wait_spec.rb | 175 | |
| -rw-r--r-- | spec/ruby/core/data/constants_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/dir/chdir_spec.rb | 124 | |
| -rw-r--r-- | spec/ruby/core/dir/children_spec.rb | 134 | |
| -rw-r--r-- | spec/ruby/core/dir/chroot_spec.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/dir/close_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/dir/delete_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/dir/dir_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/dir/each_child_spec.rb | 106 | |
| -rw-r--r-- | spec/ruby/core/dir/each_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/dir/element_reference_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/dir/empty_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/dir/entries_spec.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/dir/exist_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/dir/fileno_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/dir/fixtures/common.rb | 204 | |
| -rw-r--r-- | spec/ruby/core/dir/foreach_spec.rb | 68 | |
| -rw-r--r-- | spec/ruby/core/dir/getwd_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/dir/glob_spec.rb | 253 | |
| -rw-r--r-- | spec/ruby/core/dir/home_spec.rb | 88 | |
| -rw-r--r-- | spec/ruby/core/dir/initialize_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/dir/inspect_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/dir/mkdir_spec.rb | 107 | |
| -rw-r--r-- | spec/ruby/core/dir/open_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/dir/path_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/dir/pos_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/dir/pwd_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/dir/read_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/dir/rewind_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/dir/rmdir_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/dir/seek_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/chroot.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/closed.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/delete.rb | 63 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/exist.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/glob.rb | 484 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/open.rb | 73 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/path.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/pos.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/dir/shared/pwd.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/dir/tell_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/dir/to_path_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/dir/unlink_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/encoding/_dump_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/encoding/_load_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/encoding/aliases_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/encoding/ascii_compatible_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/encoding/compatible_spec.rb | 379 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/asciicompat_encoding_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/constants_spec.rb | 131 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/convert_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/convpath_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/destination_encoding_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/finish_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/insert_output_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/inspect_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/last_error_spec.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/new_spec.rb | 119 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/primitive_convert_spec.rb | 211 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/primitive_errinfo_spec.rb | 68 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/putback_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/replacement_spec.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/search_convpath_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/encoding/converter/source_encoding_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/encoding/default_external_spec.rb | 71 | |
| -rw-r--r-- | spec/ruby/core/encoding/default_internal_spec.rb | 74 | |
| -rw-r--r-- | spec/ruby/core/encoding/dummy_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/encoding/find_spec.rb | 82 | |
| -rw-r--r-- | spec/ruby/core/encoding/fixtures/classes.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/encoding/inspect_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/encoding/invalid_byte_sequence_error/destination_encoding_name_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/encoding/invalid_byte_sequence_error/destination_encoding_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/encoding/invalid_byte_sequence_error/error_bytes_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/encoding/invalid_byte_sequence_error/incomplete_input_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/encoding/invalid_byte_sequence_error/readagain_bytes_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/encoding/invalid_byte_sequence_error/source_encoding_name_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/encoding/invalid_byte_sequence_error/source_encoding_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/encoding/list_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/encoding/locale_charmap_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/encoding/name_list_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/encoding/name_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/encoding/names_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/encoding/replicate_spec.rb | 75 | |
| -rw-r--r-- | spec/ruby/core/encoding/shared/name.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/encoding/to_s_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/encoding/undefined_conversion_error/destination_encoding_name_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/encoding/undefined_conversion_error/destination_encoding_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/encoding/undefined_conversion_error/error_char_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/encoding/undefined_conversion_error/source_encoding_name_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/encoding/undefined_conversion_error/source_encoding_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/enumerable/all_spec.rb | 181 | |
| -rw-r--r-- | spec/ruby/core/enumerable/any_spec.rb | 194 | |
| -rw-r--r-- | spec/ruby/core/enumerable/chain_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/enumerable/chunk_spec.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/enumerable/chunk_while_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/enumerable/collect_concat_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/collect_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/compact_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/enumerable/count_spec.rb | 59 | |
| -rw-r--r-- | spec/ruby/core/enumerable/cycle_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/enumerable/detect_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/drop_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/enumerable/drop_while_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/enumerable/each_cons_spec.rb | 105 | |
| -rw-r--r-- | spec/ruby/core/enumerable/each_entry_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/enumerable/each_slice_spec.rb | 107 | |
| -rw-r--r-- | spec/ruby/core/enumerable/each_with_index_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/enumerable/each_with_object_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/enumerable/entries_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/filter_map_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/enumerable/filter_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/find_all_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/find_index_spec.rb | 89 | |
| -rw-r--r-- | spec/ruby/core/enumerable/find_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/first_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/enumerable/fixtures/classes.rb | 345 | |
| -rw-r--r-- | spec/ruby/core/enumerable/flat_map_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/grep_spec.rb | 102 | |
| -rw-r--r-- | spec/ruby/core/enumerable/grep_v_spec.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/enumerable/group_by_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/enumerable/include_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/inject_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/lazy_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/enumerable/map_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/max_by_spec.rb | 81 | |
| -rw-r--r-- | spec/ruby/core/enumerable/max_spec.rb | 119 | |
| -rw-r--r-- | spec/ruby/core/enumerable/member_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/min_by_spec.rb | 81 | |
| -rw-r--r-- | spec/ruby/core/enumerable/min_spec.rb | 123 | |
| -rw-r--r-- | spec/ruby/core/enumerable/minmax_by_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/enumerable/minmax_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/enumerable/none_spec.rb | 147 | |
| -rw-r--r-- | spec/ruby/core/enumerable/one_spec.rb | 149 | |
| -rw-r--r-- | spec/ruby/core/enumerable/partition_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/enumerable/reduce_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/reject_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/enumerable/reverse_each_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/enumerable/select_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/collect.rb | 107 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/collect_concat.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/entries.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/enumerable_enumeratorized.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/enumeratorized.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/find.rb | 77 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/find_all.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/include.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/inject.rb | 77 | |
| -rw-r--r-- | spec/ruby/core/enumerable/shared/take.rb | 63 | |
| -rw-r--r-- | spec/ruby/core/enumerable/slice_after_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/enumerable/slice_before_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/enumerable/slice_when_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/enumerable/sort_by_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/enumerable/sort_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/enumerable/sum_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/enumerable/take_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/enumerable/take_while_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/enumerable/tally_spec.rb | 80 | |
| -rw-r--r-- | spec/ruby/core/enumerable/to_a_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerable/to_h_spec.rb | 88 | |
| -rw-r--r-- | spec/ruby/core/enumerable/uniq_spec.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/enumerable/zip_spec.rb | 46 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/begin_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/each_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/end_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/eq_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/exclude_end_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/first_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/hash_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/inspect_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/last_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/new_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/size_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/enumerator/arithmetic_sequence/step_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/enumerator/chain/each_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/enumerator/chain/initialize_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/enumerator/chain/inspect_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/enumerator/chain/rewind_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/enumerator/chain/size_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/enumerator/each_spec.rb | 89 | |
| -rw-r--r-- | spec/ruby/core/enumerator/each_with_index_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/enumerator/each_with_object_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/enumerator/enum_for_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/enumerator/enumerator_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerator/feed_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/enumerator/first_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/enumerator/fixtures/common.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/enumerator/generator/each_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/enumerator/generator/initialize_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/enumerator/initialize_spec.rb | 65 | |
| -rw-r--r-- | spec/ruby/core/enumerator/inspect_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/chunk_spec.rb | 67 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/chunk_while_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/collect_concat_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/collect_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/compact_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/drop_spec.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/drop_while_spec.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/eager_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/enum_for_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/filter_map_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/filter_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/find_all_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/fixtures/classes.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/flat_map_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/force_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/grep_spec.rb | 121 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/grep_v_spec.rb | 123 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/initialize_spec.rb | 63 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/lazy_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/map_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/reject_spec.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/select_spec.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/shared/collect.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/shared/collect_concat.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/shared/select.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/shared/to_enum.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/slice_after_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/slice_before_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/slice_when_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/take_spec.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/take_while_spec.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/to_enum_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/uniq_spec.rb | 74 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/with_index_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/enumerator/lazy/zip_spec.rb | 86 | |
| -rw-r--r-- | spec/ruby/core/enumerator/new_spec.rb | 119 | |
| -rw-r--r-- | spec/ruby/core/enumerator/next_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/enumerator/next_values_spec.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/enumerator/peek_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/enumerator/peek_values_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/enumerator/plus_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/enumerator/produce_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/enumerator/rewind_spec.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/enumerator/size_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/enumerator/to_enum_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/enumerator/with_index_spec.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/enumerator/with_object_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/enumerator/yielder/append_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/enumerator/yielder/initialize_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/enumerator/yielder/to_proc_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/enumerator/yielder/yield_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/env/assoc_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/env/clear_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/env/delete_if_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/env/delete_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/env/each_key_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/env/each_pair_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/each_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/each_value_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/env/element_reference_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/env/element_set_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/empty_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/env/except_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/env/fetch_spec.rb | 63 | |
| -rw-r--r-- | spec/ruby/core/env/filter_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/env/fixtures/common.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/env/has_key_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/has_value_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/include_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/index_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/env/indexes_spec.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/env/indices_spec.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/env/inspect_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/env/invert_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/env/keep_if_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/env/key_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/env/keys_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/env/length_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/member_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/merge_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/rassoc_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/env/rehash_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/env/reject_spec.rb | 101 | |
| -rw-r--r-- | spec/ruby/core/env/replace_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/env/select_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/env/shared/each.rb | 65 | |
| -rw-r--r-- | spec/ruby/core/env/shared/include.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/env/shared/key.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/env/shared/length.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/env/shared/select.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/env/shared/store.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/env/shared/to_hash.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/env/shared/update.rb | 106 | |
| -rw-r--r-- | spec/ruby/core/env/shared/value.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/env/shift_spec.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/env/size_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/slice_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/env/spec_helper.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/env/store_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/to_a_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/env/to_h_spec.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/env/to_hash_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/to_s_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/env/update_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/value_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/env/values_at_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/env/values_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/exception/backtrace_locations_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/exception/backtrace_spec.rb | 93 | |
| -rw-r--r-- | spec/ruby/core/exception/case_compare_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/exception/cause_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/exception/dup_spec.rb | 74 | |
| -rw-r--r-- | spec/ruby/core/exception/equal_value_spec.rb | 68 | |
| -rw-r--r-- | spec/ruby/core/exception/errno_spec.rb | 67 | |
| -rw-r--r-- | spec/ruby/core/exception/exception_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/exception/exit_value_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/exception/fixtures/common.rb | 95 | |
| -rw-r--r-- | spec/ruby/core/exception/frozen_error_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/exception/full_message_spec.rb | 106 | |
| -rw-r--r-- | spec/ruby/core/exception/hierarchy_spec.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/exception/inspect_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/exception/interrupt_spec.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/exception/io_error_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/exception/key_error_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/exception/load_error_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/exception/message_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/exception/name_error_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/exception/name_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/exception/new_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/exception/no_method_error_spec.rb | 136 | |
| -rw-r--r-- | spec/ruby/core/exception/reason_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/exception/receiver_spec.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/exception/result_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/exception/set_backtrace_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/exception/shared/new.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/exception/signal_exception_spec.rb | 123 | |
| -rw-r--r-- | spec/ruby/core/exception/signm_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/exception/signo_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/exception/standard_error_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/exception/status_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/exception/success_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/exception/system_call_error_spec.rb | 143 | |
| -rw-r--r-- | spec/ruby/core/exception/system_exit_spec.rb | 59 | |
| -rw-r--r-- | spec/ruby/core/exception/to_s_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/exception/top_level_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/exception/uncaught_throw_error_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/false/and_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/false/case_compare_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/false/dup_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/false/falseclass_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/false/inspect_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/false/or_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/false/to_s_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/false/xor_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/fiber/blocking_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/fiber/fixtures/classes.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/fiber/new_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/fiber/raise_spec.rb | 119 | |
| -rw-r--r-- | spec/ruby/core/fiber/resume_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/fiber/shared/blocking.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/fiber/storage_spec.rb | 117 | |
| -rw-r--r-- | spec/ruby/core/fiber/yield_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/file/absolute_path_spec.rb | 94 | |
| -rw-r--r-- | spec/ruby/core/file/atime_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/file/basename_spec.rb | 183 | |
| -rw-r--r-- | spec/ruby/core/file/birthtime_spec.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/file/blockdev_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/file/chardev_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/file/chmod_spec.rb | 185 | |
| -rw-r--r-- | spec/ruby/core/file/chown_spec.rb | 144 | |
| -rw-r--r-- | spec/ruby/core/file/constants/constants_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/file/constants_spec.rb | 141 | |
| -rw-r--r-- | spec/ruby/core/file/ctime_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/file/delete_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/file/directory_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/file/dirname_spec.rb | 124 | |
| -rw-r--r-- | spec/ruby/core/file/empty_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/file/executable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/executable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/exist_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/file/expand_path_spec.rb | 265 | |
| -rw-r--r-- | spec/ruby/core/file/extname_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/file/file_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/file/fixtures/common.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/file/fixtures/do_not_remove | 1 | |
| -rw-r--r-- | spec/ruby/core/file/fixtures/file_types.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/file/flock_spec.rb | 106 | |
| -rw-r--r-- | spec/ruby/core/file/fnmatch_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/file/ftype_spec.rb | 82 | |
| -rw-r--r-- | spec/ruby/core/file/grpowned_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/file/identical_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/file/initialize_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/file/inspect_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/file/join_spec.rb | 148 | |
| -rw-r--r-- | spec/ruby/core/file/lchmod_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/file/lchown_spec.rb | 59 | |
| -rw-r--r-- | spec/ruby/core/file/link_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/file/lstat_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/file/lutime_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/file/mkfifo_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/file/mtime_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/file/new_spec.rb | 162 | |
| -rw-r--r-- | spec/ruby/core/file/null_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/file/open_spec.rb | 704 | |
| -rw-r--r-- | spec/ruby/core/file/owned_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/file/path_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/file/pipe_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/file/printf_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/file/read_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/file/readable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/readable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/readlink_spec.rb | 86 | |
| -rw-r--r-- | spec/ruby/core/file/realdirpath_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/file/realpath_spec.rb | 94 | |
| -rw-r--r-- | spec/ruby/core/file/rename_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/file/reopen_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/file/setgid_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/file/setuid_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/file/shared/fnmatch.rb | 249 | |
| -rw-r--r-- | spec/ruby/core/file/shared/open.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/file/shared/path.rb | 94 | |
| -rw-r--r-- | spec/ruby/core/file/shared/read.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/file/shared/stat.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/file/shared/unlink.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/file/size_spec.rb | 119 | |
| -rw-r--r-- | spec/ruby/core/file/socket_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/file/split_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/file/stat/atime_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/file/stat/birthtime_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/file/stat/blksize_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/file/stat/blockdev_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/blocks_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/file/stat/chardev_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/comparison_spec.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/file/stat/ctime_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/file/stat/dev_major_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/file/stat/dev_minor_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/file/stat/dev_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/file/stat/directory_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/executable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/executable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/file_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/fixtures/classes.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/file/stat/ftype_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/file/stat/gid_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/file/stat/grpowned_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/ino_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/file/stat/inspect_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/file/stat/mode_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/file/stat/mtime_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/file/stat/new_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/file/stat/nlink_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/file/stat/owned_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/file/stat/pipe_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/file/stat/rdev_major_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/file/stat/rdev_minor_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/file/stat/rdev_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/file/stat/readable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/readable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/setgid_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/setuid_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/size_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/file/stat/socket_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/sticky_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/symlink_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/uid_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/file/stat/world_readable_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/file/stat/world_writable_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/file/stat/writable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/writable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat/zero_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/stat_spec.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/file/sticky_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/file/symlink_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/file/to_path_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/file/truncate_spec.rb | 177 | |
| -rw-r--r-- | spec/ruby/core/file/umask_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/file/unlink_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/file/utime_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/file/world_readable_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/file/world_writable_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/file/writable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/writable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/file/zero_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/filetest/blockdev_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/chardev_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/directory_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/filetest/executable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/filetest/executable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/filetest/exist_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/file_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/filetest/grpowned_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/filetest/identical_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/owned_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/pipe_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/readable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/filetest/readable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/filetest/setgid_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/setuid_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/size_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/filetest/socket_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/filetest/sticky_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/filetest/symlink_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/filetest/world_readable_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/filetest/world_writable_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/filetest/writable_real_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/filetest/writable_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/filetest/zero_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/float/abs_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/angle_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/arg_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/case_compare_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/ceil_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/float/coerce_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/float/comparison_spec.rb | 113 | |
| -rw-r--r-- | spec/ruby/core/float/constants_spec.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/float/denominator_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/float/divide_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/float/divmod_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/float/dup_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/float/eql_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/float/equal_value_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/exponent_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/float/fdiv_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/finite_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/float/fixtures/classes.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/float/fixtures/coerce.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/float/float_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/float/floor_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/float/gt_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/float/gte_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/float/hash_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/float/infinite_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/float/inspect_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/lt_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/float/lte_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/float/magnitude_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/float/minus_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/float/modulo_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/float/multiply_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/float/nan_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/float/negative_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/float/next_float_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/float/numerator_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/float/phase_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/plus_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/float/positive_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/float/prev_float_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/float/quo_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/rationalize_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/float/round_spec.rb | 194 | |
| -rw-r--r-- | spec/ruby/core/float/shared/abs.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/float/shared/arg.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/float/shared/arithmetic_exception_in_coerce.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/float/shared/comparison_exception_in_coerce.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/float/shared/equal.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/float/shared/modulo.rb | 48 | |
| -rw-r--r-- | spec/ruby/core/float/shared/quo.rb | 59 | |
| -rw-r--r-- | spec/ruby/core/float/shared/to_i.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/float/shared/to_s.rb | 308 | |
| -rw-r--r-- | spec/ruby/core/float/to_f_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/float/to_i_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/to_int_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/to_r_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/float/to_s_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/float/truncate_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/float/uminus_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/float/uplus_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/float/zero_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/gc/auto_compact_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/gc/count_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/gc/disable_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/gc/enable_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/gc/garbage_collect_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/gc/measure_total_time_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/gc/profiler/clear_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/gc/profiler/disable_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/gc/profiler/enable_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/gc/profiler/enabled_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/gc/profiler/report_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/gc/profiler/result_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/gc/profiler/total_time_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/gc/start_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/gc/stat_spec.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/gc/stress_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/gc/total_time_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/hash/allocate_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/hash/any_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/hash/assoc_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/hash/clear_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/hash/clone_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/hash/compact_spec.rb | 59 | |
| -rw-r--r-- | spec/ruby/core/hash/compare_by_identity_spec.rb | 138 | |
| -rw-r--r-- | spec/ruby/core/hash/constructor_spec.rb | 110 | |
| -rw-r--r-- | spec/ruby/core/hash/deconstruct_keys_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/hash/default_proc_spec.rb | 80 | |
| -rw-r--r-- | spec/ruby/core/hash/default_spec.rb | 46 | |
| -rw-r--r-- | spec/ruby/core/hash/delete_if_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/hash/delete_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/hash/dig_spec.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/hash/each_key_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/hash/each_pair_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/hash/each_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/hash/each_value_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/hash/element_reference_spec.rb | 134 | |
| -rw-r--r-- | spec/ruby/core/hash/element_set_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/empty_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/hash/eql_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/hash/equal_value_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/hash/except_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/hash/fetch_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/hash/fetch_values_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/hash/filter_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/hash/fixtures/classes.rb | 75 | |
| -rw-r--r-- | spec/ruby/core/hash/fixtures/name.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/hash/flatten_spec.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/hash/gt_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/hash/gte_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/hash/has_key_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/has_value_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/hash_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/hash/include_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/index_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/hash/initialize_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/hash/inspect_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/invert_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/hash/keep_if_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/hash/key_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/hash/keys_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/hash/length_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/lt_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/hash/lte_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/hash/member_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/merge_spec.rb | 100 | |
| -rw-r--r-- | spec/ruby/core/hash/new_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/hash/rassoc_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/hash/rehash_spec.rb | 84 | |
| -rw-r--r-- | spec/ruby/core/hash/reject_spec.rb | 95 | |
| -rw-r--r-- | spec/ruby/core/hash/replace_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/ruby2_keywords_hash_spec.rb | 59 | |
| -rw-r--r-- | spec/ruby/core/hash/select_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/comparison.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/each.rb | 124 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/eql.rb | 204 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/equal.rb | 90 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/greater_than.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/index.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/iteration.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/key.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/length.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/less_than.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/replace.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/select.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/store.rb | 115 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/to_s.rb | 89 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/update.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/value.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/hash/shared/values_at.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/hash/shift_spec.rb | 101 | |
| -rw-r--r-- | spec/ruby/core/hash/size_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/slice_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/hash/sort_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/hash/store_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/to_a_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/hash/to_h_spec.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/hash/to_hash_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/hash/to_proc_spec.rb | 99 | |
| -rw-r--r-- | spec/ruby/core/hash/to_s_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/transform_keys_spec.rb | 147 | |
| -rw-r--r-- | spec/ruby/core/hash/transform_values_spec.rb | 97 | |
| -rw-r--r-- | spec/ruby/core/hash/try_convert_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/hash/update_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/value_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/values_at_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/hash/values_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/integer/abs_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/integer/allbits_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/integer/anybits_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/integer/bit_and_spec.rb | 97 | |
| -rw-r--r-- | spec/ruby/core/integer/bit_length_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/integer/bit_or_spec.rb | 89 | |
| -rw-r--r-- | spec/ruby/core/integer/bit_xor_spec.rb | 93 | |
| -rw-r--r-- | spec/ruby/core/integer/case_compare_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/integer/ceil_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/integer/chr_spec.rb | 257 | |
| -rw-r--r-- | spec/ruby/core/integer/coerce_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/integer/comparison_spec.rb | 177 | |
| -rw-r--r-- | spec/ruby/core/integer/complement_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/integer/constants_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/integer/denominator_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/integer/digits_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/integer/div_spec.rb | 146 | |
| -rw-r--r-- | spec/ruby/core/integer/divide_spec.rb | 89 | |
| -rw-r--r-- | spec/ruby/core/integer/divmod_spec.rb | 117 | |
| -rw-r--r-- | spec/ruby/core/integer/downto_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/integer/dup_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/integer/element_reference_spec.rb | 188 | |
| -rw-r--r-- | spec/ruby/core/integer/equal_value_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/integer/even_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/integer/exponent_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/integer/fdiv_spec.rb | 100 | |
| -rw-r--r-- | spec/ruby/core/integer/fixtures/classes.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/integer/floor_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/integer/gcd_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/integer/gcdlcm_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/integer/gt_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/integer/gte_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/integer/integer_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/integer/lcm_spec.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/integer/left_shift_spec.rb | 211 | |
| -rw-r--r-- | spec/ruby/core/integer/lt_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/integer/lte_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/integer/magnitude_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/integer/minus_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/integer/modulo_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/integer/multiply_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/integer/next_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/integer/nobits_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/integer/numerator_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/integer/odd_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/integer/ord_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/integer/plus_spec.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/integer/pow_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/integer/pred_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/integer/rationalize_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/integer/remainder_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/integer/right_shift_spec.rb | 233 | |
| -rw-r--r-- | spec/ruby/core/integer/round_spec.rb | 83 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/abs.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/arithmetic_coerce.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/comparison_coerce.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/equal.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/exponent.rb | 126 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/integer_rounding.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/modulo.rb | 74 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/next.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/integer/shared/to_i.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/integer/size_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/integer/sqrt_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/integer/succ_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/integer/times_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/integer/to_f_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/integer/to_i_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/integer/to_int_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/integer/to_r_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/integer/to_s_spec.rb | 95 | |
| -rw-r--r-- | spec/ruby/core/integer/truncate_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/integer/try_convert_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/integer/uminus_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/integer/upto_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/integer/zero_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/io/advise_spec.rb | 86 | |
| -rw-r--r-- | spec/ruby/core/io/binmode_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/io/binread_spec.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/io/binwrite_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/io/bytes_spec.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/io/chars_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/io/close_on_exec_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/io/close_read_spec.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/io/close_spec.rb | 118 | |
| -rw-r--r-- | spec/ruby/core/io/close_write_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/io/closed_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/io/codepoints_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/io/constants_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/io/copy_stream_spec.rb | 322 | |
| -rw-r--r-- | spec/ruby/core/io/dup_spec.rb | 106 | |
| -rw-r--r-- | spec/ruby/core/io/each_byte_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/io/each_char_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/io/each_codepoint_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/io/each_line_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/io/each_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/io/eof_spec.rb | 107 | |
| -rw-r--r-- | spec/ruby/core/io/external_encoding_spec.rb | 225 | |
| -rw-r--r-- | spec/ruby/core/io/fcntl_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/io/fdatasync_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/io/fileno_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/bom_UTF-16BE.txt | bin | 0 -> 20 bytes |
| -rw-r--r-- | spec/ruby/core/io/fixtures/bom_UTF-16LE.txt | bin | 0 -> 20 bytes |
| -rw-r--r-- | spec/ruby/core/io/fixtures/bom_UTF-32BE.txt | bin | 0 -> 40 bytes |
| -rw-r--r-- | spec/ruby/core/io/fixtures/bom_UTF-32LE.txt | bin | 0 -> 40 bytes |
| -rw-r--r-- | spec/ruby/core/io/fixtures/bom_UTF-8.txt | 1 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/classes.rb | 218 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/copy_in_out.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/copy_stream.txt | 6 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/empty.txt | 0 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/incomplete.txt | 1 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/lines.txt | 9 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/no_bom_UTF-8.txt | 1 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/numbered_lines.txt | 5 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/one_byte.txt | 1 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/read_binary.txt | 1 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/read_euc_jp.txt | 1 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/read_text.txt | 1 | |
| -rw-r--r-- | spec/ruby/core/io/fixtures/reopen_stdout.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/io/flush_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/io/for_fd_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/io/foreach_spec.rb | 81 | |
| -rw-r--r-- | spec/ruby/core/io/fsync_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/io/getbyte_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/io/getc_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/io/gets_spec.rb | 315 | |
| -rw-r--r-- | spec/ruby/core/io/initialize_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/io/inspect_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/io/internal_encoding_spec.rb | 147 | |
| -rw-r--r-- | spec/ruby/core/io/io_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/io/ioctl_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/io/isatty_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/io/lineno_spec.rb | 136 | |
| -rw-r--r-- | spec/ruby/core/io/lines_spec.rb | 46 | |
| -rw-r--r-- | spec/ruby/core/io/new_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/io/nonblock_spec.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/io/open_spec.rb | 86 | |
| -rw-r--r-- | spec/ruby/core/io/output_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/io/path_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/io/pid_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/io/pipe_spec.rb | 225 | |
| -rw-r--r-- | spec/ruby/core/io/popen_spec.rb | 271 | |
| -rw-r--r-- | spec/ruby/core/io/pos_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/io/pread_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/io/print_spec.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/io/printf_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/io/putc_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/io/puts_spec.rb | 139 | |
| -rw-r--r-- | spec/ruby/core/io/pwrite_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/io/read_nonblock_spec.rb | 148 | |
| -rw-r--r-- | spec/ruby/core/io/read_spec.rb | 627 | |
| -rw-r--r-- | spec/ruby/core/io/readbyte_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/io/readchar_spec.rb | 110 | |
| -rw-r--r-- | spec/ruby/core/io/readline_spec.rb | 86 | |
| -rw-r--r-- | spec/ruby/core/io/readlines_spec.rb | 236 | |
| -rw-r--r-- | spec/ruby/core/io/readpartial_spec.rb | 111 | |
| -rw-r--r-- | spec/ruby/core/io/reopen_spec.rb | 313 | |
| -rw-r--r-- | spec/ruby/core/io/rewind_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/io/seek_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/io/select_spec.rb | 120 | |
| -rw-r--r-- | spec/ruby/core/io/set_encoding_by_bom_spec.rb | 262 | |
| -rw-r--r-- | spec/ruby/core/io/set_encoding_spec.rb | 238 | |
| -rw-r--r-- | spec/ruby/core/io/shared/binwrite.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/io/shared/chars.rb | 73 | |
| -rw-r--r-- | spec/ruby/core/io/shared/codepoints.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/io/shared/each.rb | 267 | |
| -rw-r--r-- | spec/ruby/core/io/shared/gets_ascii.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/io/shared/new.rb | 404 | |
| -rw-r--r-- | spec/ruby/core/io/shared/pos.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/io/shared/readlines.rb | 263 | |
| -rw-r--r-- | spec/ruby/core/io/shared/tty.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/io/shared/write.rb | 99 | |
| -rw-r--r-- | spec/ruby/core/io/stat_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/io/sync_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/io/sysopen_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/io/sysread_spec.rb | 132 | |
| -rw-r--r-- | spec/ruby/core/io/sysseek_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/io/syswrite_spec.rb | 81 | |
| -rw-r--r-- | spec/ruby/core/io/tell_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/io/to_i_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/io/to_io_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/io/try_convert_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/io/tty_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/io/ungetbyte_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/io/ungetc_spec.rb | 148 | |
| -rw-r--r-- | spec/ruby/core/io/write_nonblock_spec.rb | 95 | |
| -rw-r--r-- | spec/ruby/core/io/write_spec.rb | 204 | |
| -rw-r--r-- | spec/ruby/core/kernel/Array_spec.rb | 97 | |
| -rw-r--r-- | spec/ruby/core/kernel/Complex_spec.rb | 272 | |
| -rw-r--r-- | spec/ruby/core/kernel/Float_spec.rb | 345 | |
| -rw-r--r-- | spec/ruby/core/kernel/Hash_spec.rb | 63 | |
| -rw-r--r-- | spec/ruby/core/kernel/Integer_spec.rb | 801 | |
| -rw-r--r-- | spec/ruby/core/kernel/Rational_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/kernel/String_spec.rb | 106 | |
| -rw-r--r-- | spec/ruby/core/kernel/__callee___spec.rb | 48 | |
| -rw-r--r-- | spec/ruby/core/kernel/__dir___spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/kernel/__method___spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/kernel/abort_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/kernel/at_exit_spec.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/kernel/autoload_spec.rb | 175 | |
| -rw-r--r-- | spec/ruby/core/kernel/backtick_spec.rb | 84 | |
| -rw-r--r-- | spec/ruby/core/kernel/binding_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/kernel/block_given_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/kernel/caller_locations_spec.rb | 84 | |
| -rw-r--r-- | spec/ruby/core/kernel/caller_spec.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/kernel/case_compare_spec.rb | 135 | |
| -rw-r--r-- | spec/ruby/core/kernel/catch_spec.rb | 127 | |
| -rw-r--r-- | spec/ruby/core/kernel/chomp_spec.rb | 65 | |
| -rw-r--r-- | spec/ruby/core/kernel/chop_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/kernel/class_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/kernel/clone_spec.rb | 209 | |
| -rw-r--r-- | spec/ruby/core/kernel/comparison_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/kernel/define_singleton_method_spec.rb | 114 | |
| -rw-r--r-- | spec/ruby/core/kernel/display_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/kernel/dup_spec.rb | 67 | |
| -rw-r--r-- | spec/ruby/core/kernel/enum_for_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/kernel/eql_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/kernel/equal_value_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/kernel/eval_spec.rb | 439 | |
| -rw-r--r-- | spec/ruby/core/kernel/exec_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/kernel/exit_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/kernel/extend_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/kernel/fail_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/Complex.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/__callee__.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/__dir__.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/__method__.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/at_exit.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/autoload_b.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/autoload_d.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/autoload_from_included_module.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/autoload_from_included_module2.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/autoload_frozen.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/caller.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/caller_at_exit.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/caller_locations.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/chomp.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/chomp_f.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/chop.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/chop_f.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/classes.rb | 504 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/eval_locals.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/eval_return_with_lambda.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/eval_return_without_lambda.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/singleton_methods.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/test.rb | 362 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/warn_core_method.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/warn_require.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/kernel/fixtures/warn_require_caller.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/kernel/fork_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/kernel/format_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/kernel/freeze_spec.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/kernel/frozen_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/kernel/gets_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/kernel/global_variables_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/kernel/gsub_spec.rb | 96 | |
| -rw-r--r-- | spec/ruby/core/kernel/initialize_clone_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/kernel/initialize_copy_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/kernel/initialize_dup_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/kernel/inspect_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/kernel/instance_of_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/kernel/instance_variable_defined_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/kernel/instance_variable_get_spec.rb | 111 | |
| -rw-r--r-- | spec/ruby/core/kernel/instance_variable_set_spec.rb | 105 | |
| -rw-r--r-- | spec/ruby/core/kernel/instance_variables_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/kernel/is_a_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/kernel/iterator_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/kernel/itself_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/kernel/kind_of_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/kernel/lambda_spec.rb | 150 | |
| -rw-r--r-- | spec/ruby/core/kernel/load_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/kernel/local_variables_spec.rb | 48 | |
| -rw-r--r-- | spec/ruby/core/kernel/loop_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/kernel/match_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/kernel/method_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/kernel/methods_spec.rb | 101 | |
| -rw-r--r-- | spec/ruby/core/kernel/nil_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/kernel/not_match_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/kernel/object_id_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/kernel/open_spec.rb | 167 | |
| -rw-r--r-- | spec/ruby/core/kernel/p_spec.rb | 85 | |
| -rw-r--r-- | spec/ruby/core/kernel/pp_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/kernel/print_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/kernel/printf_spec.rb | 63 | |
| -rw-r--r-- | spec/ruby/core/kernel/private_methods_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/kernel/proc_spec.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/kernel/protected_methods_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/kernel/public_method_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/kernel/public_methods_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/kernel/public_send_spec.rb | 116 | |
| -rw-r--r-- | spec/ruby/core/kernel/putc_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/kernel/puts_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/kernel/raise_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/kernel/rand_spec.rb | 197 | |
| -rw-r--r-- | spec/ruby/core/kernel/readline_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/kernel/readlines_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/kernel/remove_instance_variable_spec.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/kernel/require_relative_spec.rb | 437 | |
| -rw-r--r-- | spec/ruby/core/kernel/require_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/kernel/respond_to_missing_spec.rb | 100 | |
| -rw-r--r-- | spec/ruby/core/kernel/respond_to_spec.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/kernel/select_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/kernel/send_spec.rb | 68 | |
| -rw-r--r-- | spec/ruby/core/kernel/set_trace_func_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/dup_clone.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/kind_of.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/lambda.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/load.rb | 207 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/method.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/require.rb | 808 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/sprintf.rb | 993 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/sprintf_encoding.rb | 67 | |
| -rw-r--r-- | spec/ruby/core/kernel/shared/then.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/kernel/singleton_class_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/kernel/singleton_method_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/kernel/singleton_methods_spec.rb | 192 | |
| -rw-r--r-- | spec/ruby/core/kernel/sleep_spec.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/kernel/spawn_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/kernel/sprintf_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/kernel/srand_spec.rb | 73 | |
| -rw-r--r-- | spec/ruby/core/kernel/sub_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/kernel/syscall_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/kernel/system_spec.rb | 115 | |
| -rw-r--r-- | spec/ruby/core/kernel/taint_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/kernel/tainted_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/kernel/tap_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/kernel/test_spec.rb | 109 | |
| -rw-r--r-- | spec/ruby/core/kernel/then_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/kernel/throw_spec.rb | 80 | |
| -rw-r--r-- | spec/ruby/core/kernel/to_enum_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/kernel/to_s_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/kernel/trace_var_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/kernel/trap_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/kernel/trust_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/kernel/untaint_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/kernel/untrace_var_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/kernel/untrust_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/kernel/untrusted_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/kernel/warn_spec.rb | 309 | |
| -rw-r--r-- | spec/ruby/core/kernel/yield_self_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/main/define_method_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/main/fixtures/classes.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/main/fixtures/string_refinement.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/main/fixtures/string_refinement_user.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/main/fixtures/using.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/main/fixtures/using_in_main.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/main/fixtures/using_in_method.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/main/fixtures/wrapped_include.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/main/include_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/main/private_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/main/public_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/main/ruby2_keywords_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/main/to_s_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/main/using_spec.rb | 152 | |
| -rw-r--r-- | spec/ruby/core/marshal/dump_spec.rb | 650 | |
| -rw-r--r-- | spec/ruby/core/marshal/fixtures/classes.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/marshal/fixtures/marshal_data.rb | 420 | |
| -rw-r--r-- | spec/ruby/core/marshal/fixtures/random.dump | bin | 0 -> 2520 bytes |
| -rw-r--r-- | spec/ruby/core/marshal/float_spec.rb | 77 | |
| -rw-r--r-- | spec/ruby/core/marshal/load_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/marshal/major_version_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/marshal/minor_version_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/marshal/restore_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/marshal/shared/load.rb | 987 | |
| -rw-r--r-- | spec/ruby/core/matchdata/allocate_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/matchdata/begin_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/matchdata/captures_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/matchdata/dup_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/matchdata/element_reference_spec.rb | 116 | |
| -rw-r--r-- | spec/ruby/core/matchdata/end_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/matchdata/eql_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/matchdata/equal_value_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/matchdata/fixtures/classes.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/matchdata/hash_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/matchdata/inspect_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/matchdata/length_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/matchdata/match_length_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/matchdata/match_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/matchdata/named_captures_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/matchdata/names_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/matchdata/offset_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/matchdata/post_match_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/matchdata/pre_match_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/matchdata/regexp_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/matchdata/shared/eql.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/matchdata/shared/length.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/matchdata/size_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/matchdata/string_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/matchdata/to_a_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/matchdata/to_s_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/matchdata/values_at_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/math/acos_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/math/acosh_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/math/asin_spec.rb | 48 | |
| -rw-r--r-- | spec/ruby/core/math/asinh_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/math/atan2_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/math/atan_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/math/atanh_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/math/cbrt_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/math/constants_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/math/cos_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/math/cosh_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/math/erf_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/math/erfc_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/math/exp_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/math/fixtures/classes.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/math/frexp_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/math/gamma_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/math/hypot_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/math/ldexp_spec.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/math/lgamma_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/math/log10_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/math/log2_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/math/log_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/math/sin_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/math/sinh_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/math/sqrt_spec.rb | 40 | |
| -rw-r--r-- | spec/ruby/core/math/tan_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/math/tanh_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/method/arity_spec.rb | 222 | |
| -rw-r--r-- | spec/ruby/core/method/call_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/method/case_compare_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/method/clone_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/method/compose_spec.rb | 100 | |
| -rw-r--r-- | spec/ruby/core/method/curry_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/method/element_reference_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/method/eql_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/method/equal_value_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/method/fixtures/classes.rb | 246 | |
| -rw-r--r-- | spec/ruby/core/method/hash_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/method/inspect_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/method/name_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/method/original_name_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/method/owner_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/method/parameters_spec.rb | 270 | |
| -rw-r--r-- | spec/ruby/core/method/private_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/method/protected_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/method/public_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/method/receiver_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/method/shared/call.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/method/shared/eql.rb | 94 | |
| -rw-r--r-- | spec/ruby/core/method/shared/to_s.rb | 85 | |
| -rw-r--r-- | spec/ruby/core/method/source_location_spec.rb | 113 | |
| -rw-r--r-- | spec/ruby/core/method/super_method_spec.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/method/to_proc_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/method/to_s_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/method/unbind_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/module/alias_method_spec.rb | 173 | |
| -rw-r--r-- | spec/ruby/core/module/ancestors_spec.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/module/append_features_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/module/attr_accessor_spec.rb | 119 | |
| -rw-r--r-- | spec/ruby/core/module/attr_reader_spec.rb | 80 | |
| -rw-r--r-- | spec/ruby/core/module/attr_spec.rb | 168 | |
| -rw-r--r-- | spec/ruby/core/module/attr_writer_spec.rb | 90 | |
| -rw-r--r-- | spec/ruby/core/module/autoload_spec.rb | 1012 | |
| -rw-r--r-- | spec/ruby/core/module/case_compare_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/module/class_eval_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/class_exec_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/class_variable_defined_spec.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/module/class_variable_get_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/module/class_variable_set_spec.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/module/class_variables_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/module/comparison_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/module/const_added_spec.rb | 125 | |
| -rw-r--r-- | spec/ruby/core/module/const_defined_spec.rb | 154 | |
| -rw-r--r-- | spec/ruby/core/module/const_get_spec.rb | 251 | |
| -rw-r--r-- | spec/ruby/core/module/const_missing_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/module/const_set_spec.rb | 142 | |
| -rw-r--r-- | spec/ruby/core/module/const_source_location_spec.rb | 225 | |
| -rw-r--r-- | spec/ruby/core/module/constants_spec.rb | 97 | |
| -rw-r--r-- | spec/ruby/core/module/define_method_spec.rb | 805 | |
| -rw-r--r-- | spec/ruby/core/module/define_singleton_method_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/module/deprecate_constant_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/module/eql_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/equal_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/equal_value_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/extend_object_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/module/extended_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_abc.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_c.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_callback.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_concur.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_d.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_during_autoload.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_during_require.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_during_require_current_file.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_e.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_empty.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_ex1.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_exception.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_f.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_g.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_h.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_i.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_j.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_k.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_lm.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_location.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_nested.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_never_set.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_o.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_overridden.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_r.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_raise.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_required_directly.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_required_directly_nested.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_required_directly_no_constant.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_s.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_self_during_require.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_subclass.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_t.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_v.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_w.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_w2.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_x.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/autoload_z.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/classes.rb | 627 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/constant_unicode.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/constants_autoload.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/constants_autoload_a.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/constants_autoload_b.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/constants_autoload_c.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/constants_autoload_d.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/module.rb | 4 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/multi/foo.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/multi/foo/bar_baz.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/name.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/path1/load_path.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/path2/load_path.rb | 1 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/refine.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/module/fixtures/repeated_concurrent_autoload.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/module/freeze_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/module/gt_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/module/gte_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/module/include_spec.rb | 577 | |
| -rw-r--r-- | spec/ruby/core/module/included_modules_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/module/included_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/module/initialize_copy_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/module/initialize_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/module/instance_method_spec.rb | 111 | |
| -rw-r--r-- | spec/ruby/core/module/instance_methods_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/module/lt_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/module/lte_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/module/method_added_spec.rb | 83 | |
| -rw-r--r-- | spec/ruby/core/module/method_defined_spec.rb | 98 | |
| -rw-r--r-- | spec/ruby/core/module/method_removed_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/module/method_undefined_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/module/module_eval_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/module_exec_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/module/module_function_spec.rb | 285 | |
| -rw-r--r-- | spec/ruby/core/module/name_spec.rb | 130 | |
| -rw-r--r-- | spec/ruby/core/module/nesting_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/module/new_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/module/prepend_features_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/module/prepend_spec.rb | 761 | |
| -rw-r--r-- | spec/ruby/core/module/prepended_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/module/private_class_method_spec.rb | 93 | |
| -rw-r--r-- | spec/ruby/core/module/private_constant_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/module/private_instance_methods_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/module/private_method_defined_spec.rb | 120 | |
| -rw-r--r-- | spec/ruby/core/module/private_spec.rb | 107 | |
| -rw-r--r-- | spec/ruby/core/module/protected_instance_methods_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/module/protected_method_defined_spec.rb | 120 | |
| -rw-r--r-- | spec/ruby/core/module/protected_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/module/public_class_method_spec.rb | 96 | |
| -rw-r--r-- | spec/ruby/core/module/public_constant_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/module/public_instance_method_spec.rb | 65 | |
| -rw-r--r-- | spec/ruby/core/module/public_instance_methods_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/module/public_method_defined_spec.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/module/public_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/module/refine_spec.rb | 1051 | |
| -rw-r--r-- | spec/ruby/core/module/remove_class_variable_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/module/remove_const_spec.rb | 105 | |
| -rw-r--r-- | spec/ruby/core/module/remove_method_spec.rb | 131 | |
| -rw-r--r-- | spec/ruby/core/module/ruby2_keywords_spec.rb | 319 | |
| -rw-r--r-- | spec/ruby/core/module/shared/class_eval.rb | 168 | |
| -rw-r--r-- | spec/ruby/core/module/shared/class_exec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/module/shared/equal_value.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/module/shared/set_visibility.rb | 186 | |
| -rw-r--r-- | spec/ruby/core/module/singleton_class_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/module/to_s_spec.rb | 68 | |
| -rw-r--r-- | spec/ruby/core/module/undef_method_spec.rb | 181 | |
| -rw-r--r-- | spec/ruby/core/module/using_spec.rb | 377 | |
| -rw-r--r-- | spec/ruby/core/mutex/lock_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/mutex/locked_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/mutex/owned_spec.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/mutex/sleep_spec.rb | 103 | |
| -rw-r--r-- | spec/ruby/core/mutex/synchronize_spec.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/mutex/try_lock_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/mutex/unlock_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/nil/and_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/nil/case_compare_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/nil/dup_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/nil/inspect_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/nil/match_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/nil/nil_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/nil/nilclass_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/nil/or_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/nil/rationalize_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/nil/to_a_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/nil/to_c_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/nil/to_f_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/nil/to_h_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/nil/to_i_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/nil/to_r_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/nil/to_s_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/nil/xor_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/numeric/abs2_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/numeric/abs_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/angle_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/arg_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/ceil_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/numeric/clone_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/numeric/coerce_spec.rb | 59 | |
| -rw-r--r-- | spec/ruby/core/numeric/comparison_spec.rb | 48 | |
| -rw-r--r-- | spec/ruby/core/numeric/conj_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/conjugate_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/denominator_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/numeric/div_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/numeric/divmod_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/numeric/dup_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/numeric/eql_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/numeric/fdiv_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/numeric/finite_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/numeric/fixtures/classes.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/numeric/floor_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/numeric/i_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/numeric/imag_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/imaginary_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/infinite_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/numeric/integer_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/numeric/magnitude_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/numeric/modulo_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/numeric/negative_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/numeric/nonzero_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/numeric/numerator_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/numeric/numeric_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/numeric/phase_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/polar_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/numeric/positive_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/numeric/quo_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/numeric/real_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/numeric/rect_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/rectangular_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/numeric/remainder_spec.rb | 67 | |
| -rw-r--r-- | spec/ruby/core/numeric/round_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/numeric/shared/abs.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/numeric/shared/arg.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/numeric/shared/conj.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/numeric/shared/imag.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/numeric/shared/quo.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/numeric/shared/rect.rb | 48 | |
| -rw-r--r-- | spec/ruby/core/numeric/shared/step.rb | 416 | |
| -rw-r--r-- | spec/ruby/core/numeric/singleton_method_added_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/numeric/step_spec.rb | 198 | |
| -rw-r--r-- | spec/ruby/core/numeric/to_c_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/numeric/to_int_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/numeric/truncate_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/numeric/uminus_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/numeric/uplus_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/numeric/zero_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/objectspace/_id2ref_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/objectspace/add_finalizer_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/objectspace/call_finalizer_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/objectspace/count_objects_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/objectspace/define_finalizer_spec.rb | 194 | |
| -rw-r--r-- | spec/ruby/core/objectspace/each_object_spec.rb | 213 | |
| -rw-r--r-- | spec/ruby/core/objectspace/finalizers_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/objectspace/fixtures/classes.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/objectspace/garbage_collect_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/objectspace/remove_finalizer_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/objectspace/undefine_finalizer_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/each_key_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/each_pair_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/each_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/each_value_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/element_reference_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/element_set_spec.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/include_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/inspect_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/key_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/keys_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/length_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/member_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/shared/each.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/shared/include.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/shared/members.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/shared/size.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/size_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap/values_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/objectspace/weakmap_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/proc/allocate_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/proc/arity_spec.rb | 640 | |
| -rw-r--r-- | spec/ruby/core/proc/binding_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/proc/block_pass_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/proc/call_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/proc/case_compare_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/proc/clone_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/proc/compose_spec.rb | 162 | |
| -rw-r--r-- | spec/ruby/core/proc/curry_spec.rb | 180 | |
| -rw-r--r-- | spec/ruby/core/proc/dup_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/proc/element_reference_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/proc/eql_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/proc/equal_value_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/proc/fixtures/common.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/proc/fixtures/proc_aref.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/proc/fixtures/proc_aref_frozen.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/proc/fixtures/source_location.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/proc/hash_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/proc/inspect_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/proc/lambda_spec.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/proc/new_spec.rb | 201 | |
| -rw-r--r-- | spec/ruby/core/proc/parameters_spec.rb | 118 | |
| -rw-r--r-- | spec/ruby/core/proc/ruby2_keywords_spec.rb | 78 | |
| -rw-r--r-- | spec/ruby/core/proc/shared/call.rb | 99 | |
| -rw-r--r-- | spec/ruby/core/proc/shared/call_arguments.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/proc/shared/compose.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/proc/shared/dup.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/proc/shared/equal.rb | 100 | |
| -rw-r--r-- | spec/ruby/core/proc/shared/to_s.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/proc/source_location_spec.rb | 86 | |
| -rw-r--r-- | spec/ruby/core/proc/to_proc_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/proc/to_s_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/proc/yield_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/process/_fork_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/process/abort_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/process/clock_getres_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/process/clock_gettime_spec.rb | 152 | |
| -rw-r--r-- | spec/ruby/core/process/constants_spec.rb | 86 | |
| -rw-r--r-- | spec/ruby/core/process/daemon_spec.rb | 118 | |
| -rw-r--r-- | spec/ruby/core/process/detach_spec.rb | 75 | |
| -rw-r--r-- | spec/ruby/core/process/egid_spec.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/process/euid_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/process/exec_spec.rb | 241 | |
| -rw-r--r-- | spec/ruby/core/process/exit_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/process/fixtures/clocks.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/process/fixtures/common.rb | 88 | |
| -rw-r--r-- | spec/ruby/core/process/fixtures/daemon.rb | 111 | |
| -rw-r--r-- | spec/ruby/core/process/fixtures/in.txt | 1 | |
| -rw-r--r-- | spec/ruby/core/process/fixtures/kill.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/process/fixtures/map_fd.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/process/fixtures/setpriority.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/process/fork_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/process/getpgid_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/process/getpgrp_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/process/getpriority_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/process/getrlimit_spec.rb | 100 | |
| -rw-r--r-- | spec/ruby/core/process/gid/change_privilege_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/gid/eid_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/process/gid/grant_privilege_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/gid/re_exchange_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/gid/re_exchangeable_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/gid/rid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/gid/sid_available_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/gid/switch_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/gid_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/process/groups_spec.rb | 67 | |
| -rw-r--r-- | spec/ruby/core/process/initgroups_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/process/kill_spec.rb | 132 | |
| -rw-r--r-- | spec/ruby/core/process/last_status_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/process/maxgroups_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/process/pid_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/process/ppid_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/process/set_proctitle_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/process/setpgid_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/process/setpgrp_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/process/setpriority_spec.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/process/setrlimit_spec.rb | 241 | |
| -rw-r--r-- | spec/ruby/core/process/setsid_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/process/spawn_spec.rb | 756 | |
| -rw-r--r-- | spec/ruby/core/process/status/bit_and_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/status/coredump_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/status/equal_value_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/process/status/exited_spec.rb | 32 | |
| -rw-r--r-- | spec/ruby/core/process/status/exitstatus_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/process/status/inspect_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/status/pid_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/process/status/right_shift_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/status/signaled_spec.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/process/status/stopped_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/status/stopsig_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/status/success_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/process/status/termsig_spec.rb | 43 | |
| -rw-r--r-- | spec/ruby/core/process/status/to_i_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/process/status/to_int_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/status/to_s_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/status/wait_spec.rb | 102 | |
| -rw-r--r-- | spec/ruby/core/process/sys/getegid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/geteuid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/getgid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/getuid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/issetugid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setegid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/seteuid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setgid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setregid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setresgid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setresuid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setreuid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setrgid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setruid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/sys/setuid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/times_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/process/uid/change_privilege_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/uid/eid_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/process/uid/grant_privilege_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/uid/re_exchange_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/uid/re_exchangeable_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/uid/rid_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/uid/sid_available_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/uid/switch_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/uid_spec.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/process/wait2_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/process/wait_spec.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/process/waitall_spec.rb | 48 | |
| -rw-r--r-- | spec/ruby/core/process/waitpid2_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/process/waitpid_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/queue/append_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/clear_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/close_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/closed_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/deq_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/empty_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/enq_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/initialize_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/queue/length_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/num_waiting_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/pop_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/push_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/shift_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/queue/size_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/random/bytes_spec.rb | 30 | |
| -rw-r--r-- | spec/ruby/core/random/default_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/random/equal_value_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/random/fixtures/classes.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/random/new_seed_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/random/new_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/random/rand_spec.rb | 224 | |
| -rw-r--r-- | spec/ruby/core/random/random_number_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/random/seed_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/random/shared/bytes.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/random/shared/rand.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/random/srand_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/random/urandom_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/range/begin_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/range/bsearch_spec.rb | 436 | |
| -rw-r--r-- | spec/ruby/core/range/case_compare_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/range/clone_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/range/count_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/range/cover_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/range/dup_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/range/each_spec.rb | 114 | |
| -rw-r--r-- | spec/ruby/core/range/end_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/range/eql_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/range/equal_value_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/range/exclude_end_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/range/first_spec.rb | 53 | |
| -rw-r--r-- | spec/ruby/core/range/fixtures/classes.rb | 90 | |
| -rw-r--r-- | spec/ruby/core/range/frozen_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/range/hash_spec.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/range/include_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/range/initialize_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/range/inspect_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/range/last_spec.rb | 59 | |
| -rw-r--r-- | spec/ruby/core/range/max_spec.rb | 103 | |
| -rw-r--r-- | spec/ruby/core/range/member_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/range/min_spec.rb | 88 | |
| -rw-r--r-- | spec/ruby/core/range/minmax_spec.rb | 132 | |
| -rw-r--r-- | spec/ruby/core/range/new_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/range/percent_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/range/range_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/range/shared/begin.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/range/shared/cover.rb | 193 | |
| -rw-r--r-- | spec/ruby/core/range/shared/cover_and_include.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/range/shared/end.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/range/shared/equal_value.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/range/shared/include.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/range/size_spec.rb | 65 | |
| -rw-r--r-- | spec/ruby/core/range/step_spec.rb | 514 | |
| -rw-r--r-- | spec/ruby/core/range/to_a_spec.rb | 39 | |
| -rw-r--r-- | spec/ruby/core/range/to_s_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/rational/abs_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/ceil_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/coerce_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/comparison_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/rational/denominator_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/div_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/rational/divide_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/rational/divmod_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/rational/equal_value_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/rational/exponent_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/fdiv_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/floor_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/hash_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/inspect_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/integer_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/rational/magnitude_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/marshal_dump_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/rational/minus_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/rational/modulo_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/multiply_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/rational/numerator_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/plus_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/rational/quo_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/rational_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/rational/rationalize_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/rational/remainder_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/round_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/rational/to_f_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/to_i_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/to_r_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/rational/to_s_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/truncate_spec.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/rational/zero_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/refinement/append_features_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/refinement/extend_object_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/refinement/import_methods_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/refinement/include_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/refinement/prepend_features_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/refinement/prepend_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/regexp/case_compare_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/regexp/casefold_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/regexp/compile_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/regexp/encoding_spec.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/regexp/eql_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/regexp/equal_value_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/regexp/escape_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/regexp/fixed_encoding_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/regexp/hash_spec.rb | 20 | |
| -rw-r--r-- | spec/ruby/core/regexp/initialize_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/regexp/inspect_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/regexp/last_match_spec.rb | 56 | |
| -rw-r--r-- | spec/ruby/core/regexp/match_spec.rb | 146 | |
| -rw-r--r-- | spec/ruby/core/regexp/named_captures_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/regexp/names_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/regexp/new_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/regexp/options_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/regexp/quote_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/regexp/shared/equal_value.rb | 31 | |
| -rw-r--r-- | spec/ruby/core/regexp/shared/new.rb | 609 | |
| -rw-r--r-- | spec/ruby/core/regexp/shared/quote.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/regexp/source_spec.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/regexp/timeout_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/regexp/to_s_spec.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/regexp/try_convert_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/regexp/union_spec.rb | 159 | |
| -rw-r--r-- | spec/ruby/core/signal/fixtures/trap_all.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/signal/list_spec.rb | 68 | |
| -rw-r--r-- | spec/ruby/core/signal/signame_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/signal/trap_spec.rb | 293 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/append_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/clear_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/close_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/closed_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/deq_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/empty_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/enq_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/length_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/max_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/new_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/num_waiting_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/pop_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/push_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/shift_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/sizedqueue/size_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/string/allocate_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/string/append_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/string/ascii_only_spec.rb | 83 | |
| -rw-r--r-- | spec/ruby/core/string/b_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/string/byteindex_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/string/bytes_spec.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/string/bytesize_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/string/byteslice_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/string/capitalize_spec.rb | 216 | |
| -rw-r--r-- | spec/ruby/core/string/case_compare_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/string/casecmp_spec.rb | 194 | |
| -rw-r--r-- | spec/ruby/core/string/center_spec.rb | 130 | |
| -rw-r--r-- | spec/ruby/core/string/chars_spec.rb | 15 | |
| -rw-r--r-- | spec/ruby/core/string/chomp_spec.rb | 374 | |
| -rw-r--r-- | spec/ruby/core/string/chop_spec.rb | 126 | |
| -rw-r--r-- | spec/ruby/core/string/chr_spec.rb | 42 | |
| -rw-r--r-- | spec/ruby/core/string/clear_spec.rb | 37 | |
| -rw-r--r-- | spec/ruby/core/string/clone_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/string/codepoints_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/string/comparison_spec.rb | 112 | |
| -rw-r--r-- | spec/ruby/core/string/concat_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/string/count_spec.rb | 105 | |
| -rw-r--r-- | spec/ruby/core/string/crypt_spec.rb | 92 | |
| -rw-r--r-- | spec/ruby/core/string/dedup_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/string/delete_prefix_spec.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/string/delete_spec.rb | 124 | |
| -rw-r--r-- | spec/ruby/core/string/delete_suffix_spec.rb | 91 | |
| -rw-r--r-- | spec/ruby/core/string/downcase_spec.rb | 202 | |
| -rw-r--r-- | spec/ruby/core/string/dump_spec.rb | 404 | |
| -rw-r--r-- | spec/ruby/core/string/dup_spec.rb | 65 | |
| -rw-r--r-- | spec/ruby/core/string/each_byte_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/string/each_char_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/each_codepoint_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/string/each_grapheme_cluster_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/string/each_line_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/string/element_reference_spec.rb | 35 | |
| -rw-r--r-- | spec/ruby/core/string/element_set_spec.rb | 588 | |
| -rw-r--r-- | spec/ruby/core/string/empty_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/string/encode_spec.rb | 226 | |
| -rw-r--r-- | spec/ruby/core/string/encoding_spec.rb | 188 | |
| -rw-r--r-- | spec/ruby/core/string/end_with_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/string/eql_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/string/equal_value_spec.rb | 8 | |
| -rw-r--r-- | spec/ruby/core/string/fixtures/classes.rb | 60 | |
| -rw-r--r-- | spec/ruby/core/string/fixtures/freeze_magic_comment.rb | 3 | |
| -rw-r--r-- | spec/ruby/core/string/fixtures/iso-8859-9-encoding.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/string/fixtures/to_c.rb | 5 | |
| -rw-r--r-- | spec/ruby/core/string/fixtures/utf-8-encoding.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/force_encoding_spec.rb | 71 | |
| -rw-r--r-- | spec/ruby/core/string/freeze_spec.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/string/getbyte_spec.rb | 69 | |
| -rw-r--r-- | spec/ruby/core/string/grapheme_clusters_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/string/gsub_spec.rb | 625 | |
| -rw-r--r-- | spec/ruby/core/string/hash_spec.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/string/hex_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/string/include_spec.rb | 49 | |
| -rw-r--r-- | spec/ruby/core/string/index_spec.rb | 321 | |
| -rw-r--r-- | spec/ruby/core/string/initialize_spec.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/string/insert_spec.rb | 81 | |
| -rw-r--r-- | spec/ruby/core/string/inspect_spec.rb | 520 | |
| -rw-r--r-- | spec/ruby/core/string/intern_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/length_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/lines_spec.rb | 19 | |
| -rw-r--r-- | spec/ruby/core/string/ljust_spec.rb | 113 | |
| -rw-r--r-- | spec/ruby/core/string/lstrip_spec.rb | 77 | |
| -rw-r--r-- | spec/ruby/core/string/match_spec.rb | 167 | |
| -rw-r--r-- | spec/ruby/core/string/modulo_spec.rb | 778 | |
| -rw-r--r-- | spec/ruby/core/string/multiply_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/new_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/string/next_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/string/oct_spec.rb | 88 | |
| -rw-r--r-- | spec/ruby/core/string/ord_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/string/partition_spec.rb | 63 | |
| -rw-r--r-- | spec/ruby/core/string/plus_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/string/prepend_spec.rb | 54 | |
| -rw-r--r-- | spec/ruby/core/string/replace_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/reverse_spec.rb | 79 | |
| -rw-r--r-- | spec/ruby/core/string/rindex_spec.rb | 387 | |
| -rw-r--r-- | spec/ruby/core/string/rjust_spec.rb | 113 | |
| -rw-r--r-- | spec/ruby/core/string/rpartition_spec.rb | 71 | |
| -rw-r--r-- | spec/ruby/core/string/rstrip_spec.rb | 95 | |
| -rw-r--r-- | spec/ruby/core/string/scan_spec.rb | 175 | |
| -rw-r--r-- | spec/ruby/core/string/scrub_spec.rb | 175 | |
| -rw-r--r-- | spec/ruby/core/string/setbyte_spec.rb | 111 | |
| -rw-r--r-- | spec/ruby/core/string/shared/chars.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/string/shared/codepoints.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/string/shared/concat.rb | 150 | |
| -rw-r--r-- | spec/ruby/core/string/shared/dedup.rb | 57 | |
| -rw-r--r-- | spec/ruby/core/string/shared/each_char_without_block.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/string/shared/each_codepoint_without_block.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/string/shared/each_line.rb | 172 | |
| -rw-r--r-- | spec/ruby/core/string/shared/each_line_without_block.rb | 17 | |
| -rw-r--r-- | spec/ruby/core/string/shared/encode.rb | 247 | |
| -rw-r--r-- | spec/ruby/core/string/shared/eql.rb | 38 | |
| -rw-r--r-- | spec/ruby/core/string/shared/equal_value.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/string/shared/grapheme_clusters.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/string/shared/length.rb | 55 | |
| -rw-r--r-- | spec/ruby/core/string/shared/partition.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/string/shared/replace.rb | 47 | |
| -rw-r--r-- | spec/ruby/core/string/shared/slice.rb | 562 | |
| -rw-r--r-- | spec/ruby/core/string/shared/strip.rb | 24 | |
| -rw-r--r-- | spec/ruby/core/string/shared/succ.rb | 96 | |
| -rw-r--r-- | spec/ruby/core/string/shared/to_a.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/string/shared/to_s.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/string/shared/to_sym.rb | 72 | |
| -rw-r--r-- | spec/ruby/core/string/size_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/slice_spec.rb | 441 | |
| -rw-r--r-- | spec/ruby/core/string/split_spec.rb | 614 | |
| -rw-r--r-- | spec/ruby/core/string/squeeze_spec.rb | 118 | |
| -rw-r--r-- | spec/ruby/core/string/start_with_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/string/string_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/strip_spec.rb | 61 | |
| -rw-r--r-- | spec/ruby/core/string/sub_spec.rb | 522 | |
| -rw-r--r-- | spec/ruby/core/string/succ_spec.rb | 11 | |
| -rw-r--r-- | spec/ruby/core/string/sum_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/string/swapcase_spec.rb | 201 | |
| -rw-r--r-- | spec/ruby/core/string/to_c_spec.rb | 41 | |
| -rw-r--r-- | spec/ruby/core/string/to_f_spec.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/string/to_i_spec.rb | 337 | |
| -rw-r--r-- | spec/ruby/core/string/to_r_spec.rb | 58 | |
| -rw-r--r-- | spec/ruby/core/string/to_s_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/to_str_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/to_sym_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/tr_s_spec.rb | 131 | |
| -rw-r--r-- | spec/ruby/core/string/tr_spec.rb | 126 | |
| -rw-r--r-- | spec/ruby/core/string/try_convert_spec.rb | 50 | |
| -rw-r--r-- | spec/ruby/core/string/uminus_spec.rb | 6 | |
| -rw-r--r-- | spec/ruby/core/string/undump_spec.rb | 441 | |
| -rw-r--r-- | spec/ruby/core/string/unicode_normalize_spec.rb | 115 | |
| -rw-r--r-- | spec/ruby/core/string/unicode_normalized_spec.rb | 74 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/a_spec.rb | 66 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/at_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/b_spec.rb | 217 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/c_spec.rb | 73 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/comment_spec.rb | 25 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/d_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/e_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/f_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/g_spec.rb | 14 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/h_spec.rb | 155 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/i_spec.rb | 152 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/j_spec.rb | 272 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/l_spec.rb | 265 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/m_spec.rb | 192 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/n_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/p_spec.rb | 44 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/percent_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/q_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/s_spec.rb | 152 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/shared/basic.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/shared/float.rb | 311 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/shared/integer.rb | 399 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/shared/string.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/shared/taint.rb | 2 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/shared/unicode.rb | 70 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/u_spec.rb | 97 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/v_spec.rb | 18 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/w_spec.rb | 45 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/x_spec.rb | 62 | |
| -rw-r--r-- | spec/ruby/core/string/unpack/z_spec.rb | 28 | |
| -rw-r--r-- | spec/ruby/core/string/unpack1_spec.rb | 36 | |
| -rw-r--r-- | spec/ruby/core/string/unpack_spec.rb | 34 | |
| -rw-r--r-- | spec/ruby/core/string/upcase_spec.rb | 194 | |
| -rw-r--r-- | spec/ruby/core/string/uplus_spec.rb | 22 | |
| -rw-r--r-- | spec/ruby/core/string/upto_spec.rb | 104 | |
| -rw-r--r-- | spec/ruby/core/string/valid_encoding/utf_8_spec.rb | 214 | |
| -rw-r--r-- | spec/ruby/core/string/valid_encoding_spec.rb | 135 | |
| -rw-r--r-- | spec/ruby/core/struct/clone_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/struct/deconstruct_keys_spec.rb | 76 | |
| -rw-r--r-- | spec/ruby/core/struct/deconstruct_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/struct/dig_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/struct/dup_spec.rb | 23 | |
| -rw-r--r-- | spec/ruby/core/struct/each_pair_spec.rb | 33 | |
| -rw-r--r-- | spec/ruby/core/struct/each_spec.rb | 27 | |
| -rw-r--r-- | spec/ruby/core/struct/element_reference_spec.rb | 52 | |
| -rw-r--r-- | spec/ruby/core/struct/element_set_spec.rb | 29 | |
| -rw-r--r-- | spec/ruby/core/struct/eql_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/struct/equal_value_spec.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/struct/filter_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/struct/fixtures/classes.rb | 26 | |
| -rw-r--r-- | spec/ruby/core/struct/hash_spec.rb | 64 | |
| -rw-r--r-- | spec/ruby/core/struct/initialize_spec.rb | 51 | |
| -rw-r--r-- | spec/ruby/core/struct/inspect_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/struct/instance_variable_get_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/struct/instance_variables_spec.rb | 16 | |
| -rw-r--r-- | spec/ruby/core/struct/keyword_init_spec.rb | 21 | |
| -rw-r--r-- | spec/ruby/core/struct/length_spec.rb | 12 | |
| -rw-r--r-- | spec/ruby/core/struct/members_spec.rb | 13 | |
| -rw-r--r-- | spec/ruby/core/struct/new_spec.rb | 234 | |
| -rw-r--r-- | spec/ruby/core/struct/select_spec.rb | 10 | |
| -rw-r--r-- | spec/ruby/core/struct/shared/accessor.rb | 7 | |
| -rw-r--r-- | spec/ruby/core/struct/shared/dup.rb | 9 | |
| -rw-r--r-- | spec/ruby/core/struct/shared/equal_value.rb | 37 | |