├── .document ├── .editorconfig ├── .gdbinit ├── .gitignore ├── .indent.pro ├── .travis.yml ├── BSDL ├── COPYING ├── COPYING.ja ├── ChangeLog ├── GPL ├── KNOWNBUGS.rb ├── LEGAL ├── Makefile.in ├── NEWS ├── README ├── README.EXT ├── README.EXT.ja ├── README.ja ├── addr2line.c ├── addr2line.h ├── array.c ├── benchmark ├── bm_app_answer.rb ├── bm_app_aobench.rb ├── bm_app_erb.rb ├── bm_app_factorial.rb ├── bm_app_fib.rb ├── bm_app_mandelbrot.rb ├── bm_app_pentomino.rb ├── bm_app_raise.rb ├── bm_app_strconcat.rb ├── bm_app_tak.rb ├── bm_app_tarai.rb ├── bm_app_uri.rb ├── bm_hash_shift.rb ├── bm_io_file_create.rb ├── bm_io_file_read.rb ├── bm_io_file_write.rb ├── bm_io_select.rb ├── bm_io_select2.rb ├── bm_io_select3.rb ├── bm_loop_for.rb ├── bm_loop_generator.rb ├── bm_loop_times.rb ├── bm_loop_whileloop.rb ├── bm_loop_whileloop2.rb ├── bm_so_ackermann.rb ├── bm_so_array.rb ├── bm_so_binary_trees.rb ├── bm_so_concatenate.rb ├── bm_so_count_words.rb ├── bm_so_exception.rb ├── bm_so_fannkuch.rb ├── bm_so_fasta.rb ├── bm_so_k_nucleotide.rb ├── bm_so_lists.rb ├── bm_so_mandelbrot.rb ├── bm_so_matrix.rb ├── bm_so_meteor_contest.rb ├── bm_so_nbody.rb ├── bm_so_nested_loop.rb ├── bm_so_nsieve.rb ├── bm_so_nsieve_bits.rb ├── bm_so_object.rb ├── bm_so_partial_sums.rb ├── bm_so_pidigits.rb ├── bm_so_random.rb ├── bm_so_reverse_complement.rb ├── bm_so_sieve.rb ├── bm_so_spectralnorm.rb ├── bm_vm1_attr_ivar.rb ├── bm_vm1_attr_ivar_set.rb ├── bm_vm1_block.rb ├── bm_vm1_const.rb ├── bm_vm1_ensure.rb ├── bm_vm1_float_simple.rb ├── bm_vm1_ivar.rb ├── bm_vm1_ivar_set.rb ├── bm_vm1_length.rb ├── bm_vm1_lvar_init.rb ├── bm_vm1_lvar_set.rb ├── bm_vm1_neq.rb ├── bm_vm1_not.rb ├── bm_vm1_rescue.rb ├── bm_vm1_simplereturn.rb ├── bm_vm1_swap.rb ├── bm_vm1_yield.rb ├── bm_vm2_array.rb ├── bm_vm2_bigarray.rb ├── bm_vm2_bighash.rb ├── bm_vm2_case.rb ├── bm_vm2_defined_method.rb ├── bm_vm2_dstr.rb ├── bm_vm2_eval.rb ├── bm_vm2_method.rb ├── bm_vm2_method_missing.rb ├── bm_vm2_method_with_block.rb ├── bm_vm2_mutex.rb ├── bm_vm2_poly_method.rb ├── bm_vm2_poly_method_ov.rb ├── bm_vm2_proc.rb ├── bm_vm2_raise1.rb ├── bm_vm2_raise2.rb ├── bm_vm2_regexp.rb ├── bm_vm2_send.rb ├── bm_vm2_super.rb ├── bm_vm2_unif1.rb ├── bm_vm2_zsuper.rb ├── bm_vm3_backtrace.rb ├── bm_vm3_clearmethodcache.rb ├── bm_vm3_gc.rb ├── bm_vm_thread_alive_check1.rb ├── bm_vm_thread_create_join.rb ├── bm_vm_thread_mutex1.rb ├── bm_vm_thread_mutex2.rb ├── bm_vm_thread_mutex3.rb ├── bm_vm_thread_pass.rb ├── bm_vm_thread_pass_flood.rb ├── bm_vm_thread_pipe.rb ├── driver.rb ├── gc │ ├── aobench.rb │ ├── binary_trees.rb │ ├── gcbench.rb │ ├── hash1.rb │ ├── hash2.rb │ ├── null.rb │ ├── pentomino.rb │ ├── rdoc.rb │ ├── redblack.rb │ └── ring.rb ├── make_fasta_output.rb ├── other-lang │ ├── ack.pl │ ├── ack.py │ ├── ack.rb │ ├── ack.scm │ ├── eval.rb │ ├── fact.pl │ ├── fact.py │ ├── fact.rb │ ├── fact.scm │ ├── fib.pl │ ├── fib.py │ ├── fib.rb │ ├── fib.scm │ ├── loop.pl │ ├── loop.py │ ├── loop.rb │ ├── loop.scm │ ├── loop2.rb │ ├── tak.pl │ ├── tak.py │ ├── tak.rb │ └── tak.scm ├── prepare_so_count_words.rb ├── prepare_so_k_nucleotide.rb ├── prepare_so_reverse_complement.rb ├── report.rb ├── run.rb ├── runc.rb └── wc.input.base ├── bignum.c ├── bin ├── erb ├── gem ├── irb ├── rake ├── rdoc ├── ri └── testrb ├── bootstraptest ├── pending.rb ├── runner.rb ├── test_attr.rb ├── test_autoload.rb ├── test_block.rb ├── test_class.rb ├── test_eval.rb ├── test_exception.rb ├── test_finalizer.rb ├── test_flip.rb ├── test_flow.rb ├── test_fork.rb ├── test_gc.rb ├── test_io.rb ├── test_jump.rb ├── test_literal.rb ├── test_literal_suffix.rb ├── test_load.rb ├── test_marshal.rb ├── test_massign.rb ├── test_method.rb ├── test_objectspace.rb ├── test_proc.rb ├── test_struct.rb ├── test_syntax.rb └── test_thread.rb ├── class.c ├── common.mk ├── compar.c ├── compile.c ├── complex.c ├── configure.in ├── constant.h ├── cont.c ├── cygwin └── GNUmakefile.in ├── debug.c ├── defs ├── default_gems ├── gmake.mk ├── id.def ├── keywords ├── known_errors.def ├── lex.c.src ├── opt_insn_unif.def └── opt_operand.def ├── dir.c ├── dln.c ├── dln.h ├── dln_find.c ├── dmydln.c ├── dmyext.c ├── doc ├── .document ├── ChangeLog-1.8.0 ├── ChangeLog-1.9.3 ├── ChangeLog-2.0.0 ├── ChangeLog-YARV ├── NEWS-1.8.7 ├── NEWS-1.9.1 ├── NEWS-1.9.2 ├── NEWS-1.9.3 ├── NEWS-2.0.0 ├── contributing.rdoc ├── etc.rd.ja ├── forwardable.rd.ja ├── globals.rdoc ├── images │ └── boottime-classes.png ├── irb │ ├── irb-tools.rd.ja │ └── irb.rd.ja ├── marshal.rdoc ├── pty │ ├── README.expect.ja │ └── README.ja ├── regexp.rdoc ├── security.rdoc ├── shell.rd.ja ├── standard_library.rdoc ├── syntax.rdoc └── syntax │ ├── assignment.rdoc │ ├── calling_methods.rdoc │ ├── control_expressions.rdoc │ ├── exceptions.rdoc │ ├── literals.rdoc │ ├── methods.rdoc │ ├── miscellaneous.rdoc │ ├── modules_and_classes.rdoc │ ├── precedence.rdoc │ └── refinements.rdoc ├── enc ├── Makefile.in ├── ascii.c ├── big5.c ├── cp949.c ├── depend ├── emacs_mule.c ├── encdb.c ├── encinit.c.erb ├── euc_jp.c ├── euc_kr.c ├── euc_tw.c ├── gb18030.c ├── gb2312.c ├── gbk.c ├── iso_2022_jp.h ├── iso_8859_1.c ├── iso_8859_10.c ├── iso_8859_11.c ├── iso_8859_13.c ├── iso_8859_14.c ├── iso_8859_15.c ├── iso_8859_16.c ├── iso_8859_2.c ├── iso_8859_3.c ├── iso_8859_4.c ├── iso_8859_5.c ├── iso_8859_6.c ├── iso_8859_7.c ├── iso_8859_8.c ├── iso_8859_9.c ├── koi8_r.c ├── koi8_u.c ├── make_encmake.rb ├── mktable.c ├── prelude.rb ├── shift_jis.c ├── trans │ ├── CP │ │ ├── CP932UDA%UCS.src │ │ ├── CP932VDC@IBM%UCS.src │ │ ├── CP932VDC@NEC_IBM%UCS.src │ │ ├── UCS%CP932UDA.src │ │ ├── UCS%CP932VDC@IBM.src │ │ └── UCS%CP932VDC@NEC_IBM.src │ ├── EMOJI │ │ ├── EMOJI_ISO-2022-JP-KDDI%UCS.src │ │ ├── EMOJI_SHIFT_JIS-DOCOMO%UCS.src │ │ ├── EMOJI_SHIFT_JIS-KDDI%UCS.src │ │ ├── EMOJI_SHIFT_JIS-KDDI-UNDOC%UCS.src │ │ ├── EMOJI_SHIFT_JIS-SOFTBANK%UCS.src │ │ ├── UCS%EMOJI_ISO-2022-JP-KDDI-UNDOC.src │ │ ├── UCS%EMOJI_ISO-2022-JP-KDDI.src │ │ ├── UCS%EMOJI_SHIFT_JIS-DOCOMO.src │ │ ├── UCS%EMOJI_SHIFT_JIS-KDDI-UNDOC.src │ │ ├── UCS%EMOJI_SHIFT_JIS-KDDI.src │ │ └── UCS%EMOJI_SHIFT_JIS-SOFTBANK.src │ ├── GB │ │ ├── GB12345%UCS.src │ │ ├── GB2312%UCS.src │ │ ├── UCS%GB12345.src │ │ └── UCS%GB2312.src │ ├── JIS │ │ ├── JISX0201-KANA%UCS.src │ │ ├── JISX0208@1990%UCS.src │ │ ├── JISX0208@MS%UCS.src │ │ ├── JISX0208UDC%UCS.src │ │ ├── JISX0208VDC@NEC%UCS.src │ │ ├── JISX0212%UCS.src │ │ ├── JISX0212@MS%UCS.src │ │ ├── JISX0212UDC%UCS.src │ │ ├── JISX0212VDC@IBM%UCS.src │ │ ├── JISX0213-1%UCS@BMP.src │ │ ├── JISX0213-1%UCS@SIP.src │ │ ├── JISX0213-2%UCS@BMP.src │ │ ├── JISX0213-2%UCS@SIP.src │ │ ├── UCS%JISX0201-KANA.src │ │ ├── UCS%JISX0208@1990.src │ │ ├── UCS%JISX0208@MS.src │ │ ├── UCS%JISX0208UDC.src │ │ ├── UCS%JISX0208VDC@NEC.src │ │ ├── UCS%JISX0212.src │ │ ├── UCS%JISX0212@MS.src │ │ ├── UCS%JISX0212UDC.src │ │ ├── UCS%JISX0212VDC@IBM.src │ │ ├── UCS@BMP%JISX0213-1.src │ │ ├── UCS@BMP%JISX0213-2.src │ │ ├── UCS@SIP%JISX0213-1.src │ │ └── UCS@SIP%JISX0213-2.src │ ├── big5-hkscs-tbl.rb │ ├── big5-uao-tbl.rb │ ├── big5.trans │ ├── chinese.trans │ ├── cp850-tbl.rb │ ├── cp852-tbl.rb │ ├── cp855-tbl.rb │ ├── cp949-tbl.rb │ ├── emoji-exchange-tbl.rb │ ├── emoji.trans │ ├── emoji_iso2022_kddi.trans │ ├── emoji_sjis_docomo.trans │ ├── emoji_sjis_kddi.trans │ ├── emoji_sjis_softbank.trans │ ├── escape.trans │ ├── euckr-tbl.rb │ ├── gb18030-tbl.rb │ ├── gb18030.trans │ ├── gbk-tbl.rb │ ├── gbk.trans │ ├── ibm437-tbl.rb │ ├── ibm737-tbl.rb │ ├── ibm775-tbl.rb │ ├── ibm852-tbl.rb │ ├── ibm855-tbl.rb │ ├── ibm857-tbl.rb │ ├── ibm860-tbl.rb │ ├── ibm861-tbl.rb │ ├── ibm862-tbl.rb │ ├── ibm863-tbl.rb │ ├── ibm865-tbl.rb │ ├── ibm866-tbl.rb │ ├── ibm869-tbl.rb │ ├── iso-8859-1-tbl.rb │ ├── iso-8859-10-tbl.rb │ ├── iso-8859-11-tbl.rb │ ├── iso-8859-13-tbl.rb │ ├── iso-8859-14-tbl.rb │ ├── iso-8859-15-tbl.rb │ ├── iso-8859-16-tbl.rb │ ├── iso-8859-2-tbl.rb │ ├── iso-8859-3-tbl.rb │ ├── iso-8859-4-tbl.rb │ ├── iso-8859-5-tbl.rb │ ├── iso-8859-6-tbl.rb │ ├── iso-8859-7-tbl.rb │ ├── iso-8859-8-tbl.rb │ ├── iso-8859-9-tbl.rb │ ├── iso2022.trans │ ├── japanese.trans │ ├── japanese_euc.trans │ ├── japanese_sjis.trans │ ├── koi8-r-tbl.rb │ ├── koi8-u-tbl.rb │ ├── korean.trans │ ├── maccroatian-tbl.rb │ ├── maccyrillic-tbl.rb │ ├── macgreek-tbl.rb │ ├── maciceland-tbl.rb │ ├── macroman-tbl.rb │ ├── macromania-tbl.rb │ ├── macturkish-tbl.rb │ ├── macukraine-tbl.rb │ ├── newline.trans │ ├── single_byte.trans │ ├── tis-620-tbl.rb │ ├── transdb.c │ ├── ucm │ │ ├── glibc-BIG5-2.3.3.ucm │ │ ├── glibc-BIG5HKSCS-2.3.3.ucm │ │ ├── windows-950-2000.ucm │ │ └── windows-950_hkscs-2001.ucm │ ├── utf8_mac-tbl.rb │ ├── utf8_mac.trans │ ├── utf_16_32.trans │ ├── windows-1250-tbl.rb │ ├── windows-1251-tbl.rb │ ├── windows-1252-tbl.rb │ ├── windows-1253-tbl.rb │ ├── windows-1254-tbl.rb │ ├── windows-1255-tbl.rb │ ├── windows-1256-tbl.rb │ ├── windows-1257-tbl.rb │ └── windows-874-tbl.rb ├── unicode.c ├── unicode │ ├── casefold.h │ ├── name2ctype.h │ ├── name2ctype.h.blt │ ├── name2ctype.kwd │ └── name2ctype.src ├── us_ascii.c ├── utf_16_32.h ├── utf_16be.c ├── utf_16le.c ├── utf_32be.c ├── utf_32le.c ├── utf_7.h ├── utf_8.c ├── windows_1251.c ├── windows_31j.c └── x_emoji.h ├── encoding.c ├── enum.c ├── enumerator.c ├── error.c ├── eval.c ├── eval_error.c ├── eval_intern.h ├── eval_jump.c ├── ext ├── -test- │ ├── array │ │ └── resize │ │ │ ├── extconf.rb │ │ │ └── resize.c │ ├── bignum │ │ ├── big2str.c │ │ ├── bigzero.c │ │ ├── depend │ │ ├── div.c │ │ ├── extconf.rb │ │ ├── init.c │ │ ├── intpack.c │ │ ├── mul.c │ │ └── str2big.c │ ├── bug-3571 │ │ ├── bug.c │ │ └── extconf.rb │ ├── bug-3662 │ │ ├── bug.c │ │ └── extconf.rb │ ├── bug-5832 │ │ ├── bug.c │ │ └── extconf.rb │ ├── bug_reporter │ │ ├── bug_reporter.c │ │ └── extconf.rb │ ├── class │ │ ├── class2name.c │ │ ├── extconf.rb │ │ └── init.c │ ├── debug │ │ ├── depend │ │ ├── extconf.rb │ │ ├── init.c │ │ ├── inspector.c │ │ └── profile_frames.c │ ├── exception │ │ ├── depend │ │ ├── enc_raise.c │ │ ├── ensured.c │ │ ├── extconf.rb │ │ └── init.c │ ├── fatal │ │ ├── extconf.rb │ │ └── rb_fatal.c │ ├── file │ │ ├── depend │ │ ├── extconf.rb │ │ ├── init.c │ │ └── stat.c │ ├── funcall │ │ ├── extconf.rb │ │ └── passing_block.c │ ├── iter │ │ ├── break.c │ │ └── extconf.rb │ ├── load │ │ └── dot.dot │ │ │ ├── dot.dot.c │ │ │ └── extconf.rb │ ├── marshal │ │ ├── compat │ │ │ ├── extconf.rb │ │ │ └── usrcompat.c │ │ └── usr │ │ │ ├── extconf.rb │ │ │ └── usrmarshal.c │ ├── method │ │ ├── arity.c │ │ ├── extconf.rb │ │ └── init.c │ ├── num2int │ │ ├── extconf.rb │ │ └── num2int.c │ ├── old_thread_select │ │ ├── depend │ │ ├── extconf.rb │ │ └── old_thread_select.c │ ├── path_to_class │ │ ├── extconf.rb │ │ └── path_to_class.c │ ├── postponed_job │ │ ├── depend │ │ ├── extconf.rb │ │ └── postponed_job.c │ ├── printf │ │ ├── depend │ │ ├── extconf.rb │ │ └── printf.c │ ├── rational │ │ ├── depend │ │ ├── extconf.rb │ │ └── rat.c │ ├── st │ │ ├── numhash │ │ │ ├── extconf.rb │ │ │ └── numhash.c │ │ └── update │ │ │ ├── extconf.rb │ │ │ └── update.c │ ├── string │ │ ├── coderange.c │ │ ├── cstr.c │ │ ├── depend │ │ ├── ellipsize.c │ │ ├── enc_associate.c │ │ ├── enc_str_buf_cat.c │ │ ├── extconf.rb │ │ ├── init.c │ │ ├── modify.c │ │ ├── normalize.c │ │ ├── qsort.c │ │ └── set_len.c │ ├── symbol │ │ ├── extconf.rb │ │ ├── init.c │ │ ├── intern.c │ │ └── type.c │ ├── tracepoint │ │ ├── depend │ │ ├── extconf.rb │ │ └── tracepoint.c │ ├── typeddata │ │ ├── extconf.rb │ │ └── typeddata.c │ ├── wait_for_single_fd │ │ ├── depend │ │ ├── extconf.rb │ │ └── wait_for_single_fd.c │ └── win32 │ │ ├── dln │ │ ├── dlntest.c │ │ ├── extconf.rb │ │ ├── libdlntest.c │ │ └── libdlntest.def │ │ └── fd_setsize │ │ ├── depend │ │ ├── extconf.rb │ │ └── fd_setsize.c ├── .document ├── Setup ├── Setup.atheos ├── Setup.emx ├── Setup.nacl ├── Setup.nt ├── bigdecimal │ ├── README │ ├── bigdecimal.c │ ├── bigdecimal.gemspec │ ├── bigdecimal.h │ ├── depend │ ├── extconf.rb │ ├── lib │ │ └── bigdecimal │ │ │ ├── jacobian.rb │ │ │ ├── ludcmp.rb │ │ │ ├── math.rb │ │ │ ├── newton.rb │ │ │ └── util.rb │ └── sample │ │ ├── linear.rb │ │ ├── nlsolve.rb │ │ └── pi.rb ├── continuation │ ├── continuation.c │ └── extconf.rb ├── coverage │ ├── coverage.c │ ├── depend │ └── extconf.rb ├── curses │ ├── curses.c │ ├── depend │ └── extconf.rb ├── date │ ├── date_core.c │ ├── date_parse.c │ ├── date_strftime.c │ ├── date_strptime.c │ ├── date_tmx.h │ ├── depend │ ├── extconf.rb │ └── lib │ │ ├── date.rb │ │ └── date │ │ └── format.rb ├── dbm │ ├── dbm.c │ └── extconf.rb ├── digest │ ├── bubblebabble │ │ ├── bubblebabble.c │ │ ├── depend │ │ └── extconf.rb │ ├── defs.h │ ├── depend │ ├── digest.c │ ├── digest.h │ ├── extconf.rb │ ├── lib │ │ ├── digest.rb │ │ └── digest │ │ │ └── hmac.rb │ ├── md5 │ │ ├── depend │ │ ├── extconf.rb │ │ ├── md5.c │ │ ├── md5.h │ │ ├── md5init.c │ │ ├── md5ossl.c │ │ └── md5ossl.h │ ├── rmd160 │ │ ├── depend │ │ ├── extconf.rb │ │ ├── rmd160.c │ │ ├── rmd160.h │ │ ├── rmd160init.c │ │ ├── rmd160ossl.c │ │ └── rmd160ossl.h │ ├── sha1 │ │ ├── depend │ │ ├── extconf.rb │ │ ├── sha1.c │ │ ├── sha1.h │ │ ├── sha1init.c │ │ ├── sha1ossl.c │ │ └── sha1ossl.h │ ├── sha2 │ │ ├── depend │ │ ├── extconf.rb │ │ ├── lib │ │ │ └── sha2.rb │ │ ├── sha2.c │ │ ├── sha2.h │ │ ├── sha2init.c │ │ ├── sha2ossl.c │ │ └── sha2ossl.h │ └── test.sh ├── dl │ ├── callback │ │ ├── depend │ │ ├── extconf.rb │ │ └── mkcallback.rb │ ├── cfunc.c │ ├── cptr.c │ ├── depend │ ├── dl.c │ ├── dl.h │ ├── extconf.rb │ ├── handle.c │ └── lib │ │ ├── dl.rb │ │ └── dl │ │ ├── callback.rb │ │ ├── cparser.rb │ │ ├── func.rb │ │ ├── import.rb │ │ ├── pack.rb │ │ ├── stack.rb │ │ ├── struct.rb │ │ ├── types.rb │ │ └── value.rb ├── etc │ ├── depend │ ├── etc.c │ └── extconf.rb ├── extmk.rb ├── fcntl │ ├── extconf.rb │ └── fcntl.c ├── fiber │ ├── extconf.rb │ └── fiber.c ├── fiddle │ ├── closure.c │ ├── closure.h │ ├── conversions.c │ ├── conversions.h │ ├── depend │ ├── extconf.rb │ ├── fiddle.c │ ├── fiddle.h │ ├── function.c │ ├── function.h │ ├── handle.c │ ├── lib │ │ ├── fiddle.rb │ │ └── fiddle │ │ │ ├── closure.rb │ │ │ ├── cparser.rb │ │ │ ├── function.rb │ │ │ ├── import.rb │ │ │ ├── pack.rb │ │ │ ├── struct.rb │ │ │ ├── types.rb │ │ │ └── value.rb │ └── pointer.c ├── gdbm │ ├── README │ ├── extconf.rb │ └── gdbm.c ├── io │ ├── console │ │ ├── console.c │ │ ├── depend │ │ ├── extconf.rb │ │ ├── io-console.gemspec │ │ └── lib │ │ │ └── console │ │ │ └── size.rb │ ├── nonblock │ │ ├── depend │ │ ├── extconf.rb │ │ └── nonblock.c │ └── wait │ │ ├── depend │ │ ├── extconf.rb │ │ └── wait.c ├── json │ ├── extconf.rb │ ├── fbuffer │ │ └── fbuffer.h │ ├── generator │ │ ├── depend │ │ ├── extconf.rb │ │ ├── generator.c │ │ └── generator.h │ ├── lib │ │ ├── json.rb │ │ └── json │ │ │ ├── add │ │ │ ├── bigdecimal.rb │ │ │ ├── complex.rb │ │ │ ├── core.rb │ │ │ ├── date.rb │ │ │ ├── date_time.rb │ │ │ ├── exception.rb │ │ │ ├── ostruct.rb │ │ │ ├── range.rb │ │ │ ├── rational.rb │ │ │ ├── regexp.rb │ │ │ ├── struct.rb │ │ │ ├── symbol.rb │ │ │ └── time.rb │ │ │ ├── common.rb │ │ │ ├── ext.rb │ │ │ ├── generic_object.rb │ │ │ └── version.rb │ └── parser │ │ ├── depend │ │ ├── extconf.rb │ │ ├── parser.c │ │ ├── parser.h │ │ ├── parser.rl │ │ └── prereq.mk ├── mathn │ ├── complex │ │ ├── complex.c │ │ └── extconf.rb │ └── rational │ │ ├── extconf.rb │ │ └── rational.c ├── nkf │ ├── depend │ ├── extconf.rb │ ├── lib │ │ └── kconv.rb │ ├── nkf-utf8 │ │ ├── config.h │ │ ├── nkf.c │ │ ├── nkf.h │ │ ├── utf8tbl.c │ │ └── utf8tbl.h │ └── nkf.c ├── objspace │ ├── depend │ ├── extconf.rb │ ├── gc_hook.c │ ├── object_tracing.c │ └── objspace.c ├── openssl │ ├── depend │ ├── deprecation.rb │ ├── extconf.rb │ ├── lib │ │ ├── openssl.rb │ │ └── openssl │ │ │ ├── bn.rb │ │ │ ├── buffering.rb │ │ │ ├── cipher.rb │ │ │ ├── config.rb │ │ │ ├── digest.rb │ │ │ ├── ssl.rb │ │ │ └── x509.rb │ ├── openssl_missing.c │ ├── openssl_missing.h │ ├── ossl.c │ ├── ossl.h │ ├── ossl_asn1.c │ ├── ossl_asn1.h │ ├── ossl_bio.c │ ├── ossl_bio.h │ ├── ossl_bn.c │ ├── ossl_bn.h │ ├── ossl_cipher.c │ ├── ossl_cipher.h │ ├── ossl_config.c │ ├── ossl_config.h │ ├── ossl_digest.c │ ├── ossl_digest.h │ ├── ossl_engine.c │ ├── ossl_engine.h │ ├── ossl_hmac.c │ ├── ossl_hmac.h │ ├── ossl_ns_spki.c │ ├── ossl_ns_spki.h │ ├── ossl_ocsp.c │ ├── ossl_ocsp.h │ ├── ossl_pkcs12.c │ ├── ossl_pkcs12.h │ ├── ossl_pkcs5.c │ ├── ossl_pkcs5.h │ ├── ossl_pkcs7.c │ ├── ossl_pkcs7.h │ ├── ossl_pkey.c │ ├── ossl_pkey.h │ ├── ossl_pkey_dh.c │ ├── ossl_pkey_dsa.c │ ├── ossl_pkey_ec.c │ ├── ossl_pkey_rsa.c │ ├── ossl_rand.c │ ├── ossl_rand.h │ ├── ossl_ssl.c │ ├── ossl_ssl.h │ ├── ossl_ssl_session.c │ ├── ossl_version.h │ ├── ossl_x509.c │ ├── ossl_x509.h │ ├── ossl_x509attr.c │ ├── ossl_x509cert.c │ ├── ossl_x509crl.c │ ├── ossl_x509ext.c │ ├── ossl_x509name.c │ ├── ossl_x509req.c │ ├── ossl_x509revoked.c │ ├── ossl_x509store.c │ └── ruby_missing.h ├── pathname │ ├── depend │ ├── extconf.rb │ ├── lib │ │ └── pathname.rb │ └── pathname.c ├── psych │ ├── .gitignore │ ├── depend │ ├── extconf.rb │ ├── lib │ │ ├── psych.rb │ │ └── psych │ │ │ ├── class_loader.rb │ │ │ ├── coder.rb │ │ │ ├── core_ext.rb │ │ │ ├── deprecated.rb │ │ │ ├── exception.rb │ │ │ ├── handler.rb │ │ │ ├── handlers │ │ │ ├── document_stream.rb │ │ │ └── recorder.rb │ │ │ ├── json │ │ │ ├── ruby_events.rb │ │ │ ├── stream.rb │ │ │ ├── tree_builder.rb │ │ │ └── yaml_events.rb │ │ │ ├── nodes.rb │ │ │ ├── nodes │ │ │ ├── alias.rb │ │ │ ├── document.rb │ │ │ ├── mapping.rb │ │ │ ├── node.rb │ │ │ ├── scalar.rb │ │ │ ├── sequence.rb │ │ │ └── stream.rb │ │ │ ├── omap.rb │ │ │ ├── parser.rb │ │ │ ├── scalar_scanner.rb │ │ │ ├── set.rb │ │ │ ├── stream.rb │ │ │ ├── streaming.rb │ │ │ ├── syntax_error.rb │ │ │ ├── tree_builder.rb │ │ │ ├── visitors.rb │ │ │ ├── visitors │ │ │ ├── depth_first.rb │ │ │ ├── emitter.rb │ │ │ ├── json_tree.rb │ │ │ ├── to_ruby.rb │ │ │ ├── visitor.rb │ │ │ └── yaml_tree.rb │ │ │ └── y.rb │ ├── psych.c │ ├── psych.gemspec │ ├── psych.h │ ├── psych_emitter.c │ ├── psych_emitter.h │ ├── psych_parser.c │ ├── psych_parser.h │ ├── psych_to_ruby.c │ ├── psych_to_ruby.h │ ├── psych_yaml_tree.c │ ├── psych_yaml_tree.h │ └── yaml │ │ ├── LICENSE │ │ ├── api.c │ │ ├── config.h │ │ ├── dumper.c │ │ ├── emitter.c │ │ ├── loader.c │ │ ├── parser.c │ │ ├── reader.c │ │ ├── scanner.c │ │ ├── writer.c │ │ ├── yaml.h │ │ └── yaml_private.h ├── pty │ ├── depend │ ├── extconf.rb │ ├── lib │ │ └── expect.rb │ └── pty.c ├── racc │ └── cparse │ │ ├── README │ │ ├── cparse.c │ │ └── extconf.rb ├── readline │ ├── README │ ├── README.ja │ ├── depend │ ├── extconf.rb │ └── readline.c ├── ripper │ ├── README │ ├── depend │ ├── eventids2.c │ ├── extconf.rb │ ├── lib │ │ ├── ripper.rb │ │ └── ripper │ │ │ ├── core.rb │ │ │ ├── filter.rb │ │ │ ├── lexer.rb │ │ │ └── sexp.rb │ └── tools │ │ ├── generate-param-macros.rb │ │ ├── generate.rb │ │ ├── preproc.rb │ │ └── strip.rb ├── sdbm │ ├── _sdbm.c │ ├── depend │ ├── extconf.rb │ ├── init.c │ └── sdbm.h ├── socket │ ├── .document │ ├── addrinfo.h │ ├── ancdata.c │ ├── basicsocket.c │ ├── constants.c │ ├── depend │ ├── extconf.rb │ ├── getaddrinfo.c │ ├── getnameinfo.c │ ├── ifaddr.c │ ├── init.c │ ├── ipsocket.c │ ├── lib │ │ └── socket.rb │ ├── mkconstants.rb │ ├── option.c │ ├── raddrinfo.c │ ├── rubysocket.h │ ├── socket.c │ ├── sockport.h │ ├── sockssocket.c │ ├── tcpserver.c │ ├── tcpsocket.c │ ├── udpsocket.c │ ├── unixserver.c │ └── unixsocket.c ├── stringio │ ├── README │ ├── depend │ ├── extconf.rb │ └── stringio.c ├── strscan │ ├── depend │ ├── extconf.rb │ └── strscan.c ├── syslog │ ├── depend │ ├── extconf.rb │ ├── lib │ │ └── syslog │ │ │ └── logger.rb │ ├── syslog.c │ └── syslog.txt ├── thread │ ├── extconf.rb │ └── thread.c ├── tk │ ├── ChangeLog.tkextlib │ ├── MANUAL_tcltklib.eng │ ├── MANUAL_tcltklib.ja │ ├── README.1st │ ├── README.ActiveTcl │ ├── README.fork │ ├── README.macosx-aqua │ ├── README.tcltklib │ ├── config_list.in │ ├── depend │ ├── extconf.rb │ ├── lib │ │ ├── README │ │ ├── multi-tk.rb │ │ ├── remote-tk.rb │ │ ├── tcltk.rb │ │ ├── tk.rb │ │ ├── tk │ │ │ ├── after.rb │ │ │ ├── autoload.rb │ │ │ ├── bgerror.rb │ │ │ ├── bindtag.rb │ │ │ ├── busy.rb │ │ │ ├── button.rb │ │ │ ├── canvas.rb │ │ │ ├── canvastag.rb │ │ │ ├── checkbutton.rb │ │ │ ├── clipboard.rb │ │ │ ├── clock.rb │ │ │ ├── composite.rb │ │ │ ├── console.rb │ │ │ ├── dialog.rb │ │ │ ├── encodedstr.rb │ │ │ ├── entry.rb │ │ │ ├── event.rb │ │ │ ├── font.rb │ │ │ ├── fontchooser.rb │ │ │ ├── frame.rb │ │ │ ├── grid.rb │ │ │ ├── image.rb │ │ │ ├── itemconfig.rb │ │ │ ├── itemfont.rb │ │ │ ├── kinput.rb │ │ │ ├── label.rb │ │ │ ├── labelframe.rb │ │ │ ├── listbox.rb │ │ │ ├── macpkg.rb │ │ │ ├── menu.rb │ │ │ ├── menubar.rb │ │ │ ├── menuspec.rb │ │ │ ├── message.rb │ │ │ ├── mngfocus.rb │ │ │ ├── msgcat.rb │ │ │ ├── namespace.rb │ │ │ ├── optiondb.rb │ │ │ ├── optionobj.rb │ │ │ ├── pack.rb │ │ │ ├── package.rb │ │ │ ├── palette.rb │ │ │ ├── panedwindow.rb │ │ │ ├── place.rb │ │ │ ├── radiobutton.rb │ │ │ ├── root.rb │ │ │ ├── scale.rb │ │ │ ├── scrollable.rb │ │ │ ├── scrollbar.rb │ │ │ ├── scrollbox.rb │ │ │ ├── selection.rb │ │ │ ├── spinbox.rb │ │ │ ├── tagfont.rb │ │ │ ├── text.rb │ │ │ ├── textimage.rb │ │ │ ├── textmark.rb │ │ │ ├── texttag.rb │ │ │ ├── textwindow.rb │ │ │ ├── timer.rb │ │ │ ├── toplevel.rb │ │ │ ├── ttk_selector.rb │ │ │ ├── txtwin_abst.rb │ │ │ ├── validation.rb │ │ │ ├── variable.rb │ │ │ ├── virtevent.rb │ │ │ ├── winfo.rb │ │ │ ├── winpkg.rb │ │ │ ├── wm.rb │ │ │ └── xim.rb │ │ ├── tkafter.rb │ │ ├── tkbgerror.rb │ │ ├── tkcanvas.rb │ │ ├── tkclass.rb │ │ ├── tkconsole.rb │ │ ├── tkdialog.rb │ │ ├── tkentry.rb │ │ ├── tkextlib │ │ │ ├── ICONS.rb │ │ │ ├── ICONS │ │ │ │ ├── icons.rb │ │ │ │ └── setup.rb │ │ │ ├── SUPPORT_STATUS │ │ │ ├── blt.rb │ │ │ ├── blt │ │ │ │ ├── barchart.rb │ │ │ │ ├── bitmap.rb │ │ │ │ ├── busy.rb │ │ │ │ ├── component.rb │ │ │ │ ├── container.rb │ │ │ │ ├── cutbuffer.rb │ │ │ │ ├── dragdrop.rb │ │ │ │ ├── eps.rb │ │ │ │ ├── graph.rb │ │ │ │ ├── htext.rb │ │ │ │ ├── setup.rb │ │ │ │ ├── spline.rb │ │ │ │ ├── stripchart.rb │ │ │ │ ├── table.rb │ │ │ │ ├── tabnotebook.rb │ │ │ │ ├── tabset.rb │ │ │ │ ├── ted.rb │ │ │ │ ├── tile.rb │ │ │ │ ├── tile │ │ │ │ │ ├── button.rb │ │ │ │ │ ├── checkbutton.rb │ │ │ │ │ ├── frame.rb │ │ │ │ │ ├── label.rb │ │ │ │ │ ├── radiobutton.rb │ │ │ │ │ ├── scrollbar.rb │ │ │ │ │ └── toplevel.rb │ │ │ │ ├── tree.rb │ │ │ │ ├── treeview.rb │ │ │ │ ├── unix_dnd.rb │ │ │ │ ├── vector.rb │ │ │ │ ├── watch.rb │ │ │ │ ├── win_printer.rb │ │ │ │ └── winop.rb │ │ │ ├── bwidget.rb │ │ │ ├── bwidget │ │ │ │ ├── arrowbutton.rb │ │ │ │ ├── bitmap.rb │ │ │ │ ├── button.rb │ │ │ │ ├── buttonbox.rb │ │ │ │ ├── combobox.rb │ │ │ │ ├── dialog.rb │ │ │ │ ├── dragsite.rb │ │ │ │ ├── dropsite.rb │ │ │ │ ├── dynamichelp.rb │ │ │ │ ├── entry.rb │ │ │ │ ├── label.rb │ │ │ │ ├── labelentry.rb │ │ │ │ ├── labelframe.rb │ │ │ │ ├── listbox.rb │ │ │ │ ├── mainframe.rb │ │ │ │ ├── messagedlg.rb │ │ │ │ ├── notebook.rb │ │ │ │ ├── pagesmanager.rb │ │ │ │ ├── panedwindow.rb │ │ │ │ ├── panelframe.rb │ │ │ │ ├── passwddlg.rb │ │ │ │ ├── progressbar.rb │ │ │ │ ├── progressdlg.rb │ │ │ │ ├── scrollableframe.rb │ │ │ │ ├── scrolledwindow.rb │ │ │ │ ├── scrollview.rb │ │ │ │ ├── selectcolor.rb │ │ │ │ ├── selectfont.rb │ │ │ │ ├── separator.rb │ │ │ │ ├── setup.rb │ │ │ │ ├── spinbox.rb │ │ │ │ ├── statusbar.rb │ │ │ │ ├── titleframe.rb │ │ │ │ ├── tree.rb │ │ │ │ └── widget.rb │ │ │ ├── itcl.rb │ │ │ ├── itcl │ │ │ │ ├── incr_tcl.rb │ │ │ │ └── setup.rb │ │ │ ├── itk.rb │ │ │ ├── itk │ │ │ │ ├── incr_tk.rb │ │ │ │ └── setup.rb │ │ │ ├── iwidgets.rb │ │ │ ├── iwidgets │ │ │ │ ├── buttonbox.rb │ │ │ │ ├── calendar.rb │ │ │ │ ├── canvasprintbox.rb │ │ │ │ ├── canvasprintdialog.rb │ │ │ │ ├── checkbox.rb │ │ │ │ ├── combobox.rb │ │ │ │ ├── dateentry.rb │ │ │ │ ├── datefield.rb │ │ │ │ ├── dialog.rb │ │ │ │ ├── dialogshell.rb │ │ │ │ ├── disjointlistbox.rb │ │ │ │ ├── entryfield.rb │ │ │ │ ├── extbutton.rb │ │ │ │ ├── extfileselectionbox.rb │ │ │ │ ├── extfileselectiondialog.rb │ │ │ │ ├── feedback.rb │ │ │ │ ├── fileselectionbox.rb │ │ │ │ ├── fileselectiondialog.rb │ │ │ │ ├── finddialog.rb │ │ │ │ ├── hierarchy.rb │ │ │ │ ├── hyperhelp.rb │ │ │ │ ├── labeledframe.rb │ │ │ │ ├── labeledwidget.rb │ │ │ │ ├── mainwindow.rb │ │ │ │ ├── menubar.rb │ │ │ │ ├── messagebox.rb │ │ │ │ ├── messagedialog.rb │ │ │ │ ├── notebook.rb │ │ │ │ ├── optionmenu.rb │ │ │ │ ├── panedwindow.rb │ │ │ │ ├── promptdialog.rb │ │ │ │ ├── pushbutton.rb │ │ │ │ ├── radiobox.rb │ │ │ │ ├── scopedobject.rb │ │ │ │ ├── scrolledcanvas.rb │ │ │ │ ├── scrolledframe.rb │ │ │ │ ├── scrolledhtml.rb │ │ │ │ ├── scrolledlistbox.rb │ │ │ │ ├── scrolledtext.rb │ │ │ │ ├── scrolledwidget.rb │ │ │ │ ├── selectionbox.rb │ │ │ │ ├── selectiondialog.rb │ │ │ │ ├── setup.rb │ │ │ │ ├── shell.rb │ │ │ │ ├── spindate.rb │ │ │ │ ├── spinint.rb │ │ │ │ ├── spinner.rb │ │ │ │ ├── spintime.rb │ │ │ │ ├── tabnotebook.rb │ │ │ │ ├── tabset.rb │ │ │ │ ├── timeentry.rb │ │ │ │ ├── timefield.rb │ │ │ │ ├── toolbar.rb │ │ │ │ └── watch.rb │ │ │ ├── pkg_checker.rb │ │ │ ├── setup.rb │ │ │ ├── tcllib.rb │ │ │ ├── tcllib │ │ │ │ ├── README │ │ │ │ ├── autoscroll.rb │ │ │ │ ├── calendar.rb │ │ │ │ ├── canvas_sqmap.rb │ │ │ │ ├── canvas_zoom.rb │ │ │ │ ├── chatwidget.rb │ │ │ │ ├── crosshair.rb │ │ │ │ ├── ctext.rb │ │ │ │ ├── cursor.rb │ │ │ │ ├── dateentry.rb │ │ │ │ ├── datefield.rb │ │ │ │ ├── diagrams.rb │ │ │ │ ├── dialog.rb │ │ │ │ ├── getstring.rb │ │ │ │ ├── history.rb │ │ │ │ ├── ico.rb │ │ │ │ ├── ip_entry.rb │ │ │ │ ├── khim.rb │ │ │ │ ├── menuentry.rb │ │ │ │ ├── ntext.rb │ │ │ │ ├── panelframe.rb │ │ │ │ ├── plotchart.rb │ │ │ │ ├── ruler.rb │ │ │ │ ├── screenruler.rb │ │ │ │ ├── scrolledwindow.rb │ │ │ │ ├── scrollwin.rb │ │ │ │ ├── setup.rb │ │ │ │ ├── statusbar.rb │ │ │ │ ├── style.rb │ │ │ │ ├── superframe.rb │ │ │ │ ├── swaplist.rb │ │ │ │ ├── tablelist.rb │ │ │ │ ├── tablelist_core.rb │ │ │ │ ├── tablelist_tile.rb │ │ │ │ ├── tkpiechart.rb │ │ │ │ ├── toolbar.rb │ │ │ │ ├── tooltip.rb │ │ │ │ └── widget.rb │ │ │ ├── tclx.rb │ │ │ ├── tclx │ │ │ │ ├── setup.rb │ │ │ │ └── tclx.rb │ │ │ ├── tile.rb │ │ │ ├── tile │ │ │ │ ├── dialog.rb │ │ │ │ ├── setup.rb │ │ │ │ ├── sizegrip.rb │ │ │ │ ├── style.rb │ │ │ │ ├── tbutton.rb │ │ │ │ ├── tcheckbutton.rb │ │ │ │ ├── tcombobox.rb │ │ │ │ ├── tentry.rb │ │ │ │ ├── tframe.rb │ │ │ │ ├── tlabel.rb │ │ │ │ ├── tlabelframe.rb │ │ │ │ ├── tmenubutton.rb │ │ │ │ ├── tnotebook.rb │ │ │ │ ├── tpaned.rb │ │ │ │ ├── tprogressbar.rb │ │ │ │ ├── tradiobutton.rb │ │ │ │ ├── treeview.rb │ │ │ │ ├── tscale.rb │ │ │ │ ├── tscrollbar.rb │ │ │ │ ├── tseparator.rb │ │ │ │ ├── tspinbox.rb │ │ │ │ └── tsquare.rb │ │ │ ├── tkDND.rb │ │ │ ├── tkDND │ │ │ │ ├── setup.rb │ │ │ │ ├── shape.rb │ │ │ │ └── tkdnd.rb │ │ │ ├── tkHTML.rb │ │ │ ├── tkHTML │ │ │ │ ├── htmlwidget.rb │ │ │ │ └── setup.rb │ │ │ ├── tkimg.rb │ │ │ ├── tkimg │ │ │ │ ├── README │ │ │ │ ├── bmp.rb │ │ │ │ ├── gif.rb │ │ │ │ ├── ico.rb │ │ │ │ ├── jpeg.rb │ │ │ │ ├── pcx.rb │ │ │ │ ├── pixmap.rb │ │ │ │ ├── png.rb │ │ │ │ ├── ppm.rb │ │ │ │ ├── ps.rb │ │ │ │ ├── setup.rb │ │ │ │ ├── sgi.rb │ │ │ │ ├── sun.rb │ │ │ │ ├── tga.rb │ │ │ │ ├── tiff.rb │ │ │ │ ├── window.rb │ │ │ │ ├── xbm.rb │ │ │ │ └── xpm.rb │ │ │ ├── tktable.rb │ │ │ ├── tktable │ │ │ │ ├── setup.rb │ │ │ │ └── tktable.rb │ │ │ ├── tktrans.rb │ │ │ ├── tktrans │ │ │ │ ├── setup.rb │ │ │ │ └── tktrans.rb │ │ │ ├── treectrl.rb │ │ │ ├── treectrl │ │ │ │ ├── setup.rb │ │ │ │ └── tktreectrl.rb │ │ │ ├── trofs.rb │ │ │ ├── trofs │ │ │ │ ├── setup.rb │ │ │ │ └── trofs.rb │ │ │ ├── version.rb │ │ │ ├── vu.rb │ │ │ ├── vu │ │ │ │ ├── bargraph.rb │ │ │ │ ├── charts.rb │ │ │ │ ├── dial.rb │ │ │ │ ├── pie.rb │ │ │ │ ├── setup.rb │ │ │ │ └── spinbox.rb │ │ │ ├── winico.rb │ │ │ └── winico │ │ │ │ ├── setup.rb │ │ │ │ └── winico.rb │ │ ├── tkfont.rb │ │ ├── tkmacpkg.rb │ │ ├── tkmenubar.rb │ │ ├── tkmngfocus.rb │ │ ├── tkpalette.rb │ │ ├── tkscrollbox.rb │ │ ├── tktext.rb │ │ ├── tkvirtevent.rb │ │ └── tkwinpkg.rb │ ├── old-README.tcltklib.ja │ ├── old-extconf.rb │ ├── sample │ │ ├── 24hr_clock.rb │ │ ├── binding_sample.rb │ │ ├── bindtag_sample.rb │ │ ├── binstr_usage.rb │ │ ├── btn_with_frame.rb │ │ ├── cd_timer.rb │ │ ├── cmd_res_test.rb │ │ ├── cmd_resource │ │ ├── demos-en │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.prev │ │ │ ├── README │ │ │ ├── README.1st │ │ │ ├── README.tkencoding │ │ │ ├── anilabel.rb │ │ │ ├── aniwave.rb │ │ │ ├── arrow.rb │ │ │ ├── bind.rb │ │ │ ├── bitmap.rb │ │ │ ├── browse1 │ │ │ ├── browse2 │ │ │ ├── button.rb │ │ │ ├── check.rb │ │ │ ├── check2.rb │ │ │ ├── clrpick.rb │ │ │ ├── colors.rb │ │ │ ├── combo.rb │ │ │ ├── cscroll.rb │ │ │ ├── ctext.rb │ │ │ ├── dialog1.rb │ │ │ ├── dialog2.rb │ │ │ ├── doc.org │ │ │ │ ├── README │ │ │ │ ├── README.JP │ │ │ │ ├── README.tk80 │ │ │ │ ├── license.terms │ │ │ │ └── license.terms.tk80 │ │ │ ├── entry1.rb │ │ │ ├── entry2.rb │ │ │ ├── entry3.rb │ │ │ ├── filebox.rb │ │ │ ├── floor.rb │ │ │ ├── floor2.rb │ │ │ ├── form.rb │ │ │ ├── goldberg.rb │ │ │ ├── hello │ │ │ ├── hscale.rb │ │ │ ├── icon.rb │ │ │ ├── image1.rb │ │ │ ├── image2.rb │ │ │ ├── image3.rb │ │ │ ├── items.rb │ │ │ ├── ixset │ │ │ ├── ixset2 │ │ │ ├── knightstour.rb │ │ │ ├── label.rb │ │ │ ├── labelframe.rb │ │ │ ├── mclist.rb │ │ │ ├── menu.rb │ │ │ ├── menu84.rb │ │ │ ├── menubu.rb │ │ │ ├── msgbox.rb │ │ │ ├── msgbox2.rb │ │ │ ├── paned1.rb │ │ │ ├── paned2.rb │ │ │ ├── pendulum.rb │ │ │ ├── plot.rb │ │ │ ├── puzzle.rb │ │ │ ├── radio.rb │ │ │ ├── radio2.rb │ │ │ ├── radio3.rb │ │ │ ├── rmt │ │ │ ├── rolodex │ │ │ ├── ruler.rb │ │ │ ├── sayings.rb │ │ │ ├── search.rb │ │ │ ├── spin.rb │ │ │ ├── square │ │ │ ├── states.rb │ │ │ ├── style.rb │ │ │ ├── tcolor │ │ │ ├── text.rb │ │ │ ├── textpeer.rb │ │ │ ├── timer │ │ │ ├── tkencoding.rb │ │ │ ├── toolbar.rb │ │ │ ├── tree.rb │ │ │ ├── ttkbut.rb │ │ │ ├── ttkmenu.rb │ │ │ ├── ttknote.rb │ │ │ ├── ttkpane.rb │ │ │ ├── ttkprogress.rb │ │ │ ├── twind.rb │ │ │ ├── twind2.rb │ │ │ ├── unicodeout.rb │ │ │ ├── vscale.rb │ │ │ └── widget │ │ ├── demos-jp │ │ │ ├── README │ │ │ ├── README.1st │ │ │ ├── anilabel.rb │ │ │ ├── aniwave.rb │ │ │ ├── arrow.rb │ │ │ ├── bind.rb │ │ │ ├── bitmap.rb │ │ │ ├── browse1 │ │ │ ├── browse2 │ │ │ ├── button.rb │ │ │ ├── check.rb │ │ │ ├── check2.rb │ │ │ ├── clrpick.rb │ │ │ ├── colors.rb │ │ │ ├── combo.rb │ │ │ ├── cscroll.rb │ │ │ ├── ctext.rb │ │ │ ├── dialog1.rb │ │ │ ├── dialog2.rb │ │ │ ├── doc.org │ │ │ │ ├── README │ │ │ │ ├── README.JP │ │ │ │ ├── README.tk80 │ │ │ │ ├── license.terms │ │ │ │ └── license.terms.tk80 │ │ │ ├── entry1.rb │ │ │ ├── entry2.rb │ │ │ ├── entry3.rb │ │ │ ├── filebox.rb │ │ │ ├── floor.rb │ │ │ ├── floor2.rb │ │ │ ├── form.rb │ │ │ ├── goldberg.rb │ │ │ ├── hello │ │ │ ├── hscale.rb │ │ │ ├── icon.rb │ │ │ ├── image1.rb │ │ │ ├── image2.rb │ │ │ ├── image3.rb │ │ │ ├── items.rb │ │ │ ├── ixset │ │ │ ├── ixset2 │ │ │ ├── knightstour.rb │ │ │ ├── label.rb │ │ │ ├── labelframe.rb │ │ │ ├── mclist.rb │ │ │ ├── menu.rb │ │ │ ├── menu84.rb │ │ │ ├── menu8x.rb │ │ │ ├── menubu.rb │ │ │ ├── msgbox.rb │ │ │ ├── msgbox2.rb │ │ │ ├── paned1.rb │ │ │ ├── paned2.rb │ │ │ ├── pendulum.rb │ │ │ ├── plot.rb │ │ │ ├── puzzle.rb │ │ │ ├── radio.rb │ │ │ ├── radio2.rb │ │ │ ├── radio3.rb │ │ │ ├── rmt │ │ │ ├── rolodex │ │ │ ├── rolodex-j │ │ │ ├── ruler.rb │ │ │ ├── sayings.rb │ │ │ ├── search.rb │ │ │ ├── spin.rb │ │ │ ├── square │ │ │ ├── states.rb │ │ │ ├── style.rb │ │ │ ├── tcolor │ │ │ ├── text.rb │ │ │ ├── textpeer.rb │ │ │ ├── timer │ │ │ ├── toolbar.rb │ │ │ ├── tree.rb │ │ │ ├── ttkbut.rb │ │ │ ├── ttkmenu.rb │ │ │ ├── ttknote.rb │ │ │ ├── ttkpane.rb │ │ │ ├── ttkprogress.rb │ │ │ ├── twind.rb │ │ │ ├── twind2.rb │ │ │ ├── unicodeout.rb │ │ │ ├── vscale.rb │ │ │ └── widget │ │ ├── editable_listbox.rb │ │ ├── encstr_usage.rb │ │ ├── figmemo_sample.rb │ │ ├── images │ │ │ ├── earth.gif │ │ │ ├── earthris.gif │ │ │ ├── face.xbm │ │ │ ├── flagdown.xbm │ │ │ ├── flagup.xbm │ │ │ ├── gray25.xbm │ │ │ ├── grey.25 │ │ │ ├── grey.5 │ │ │ ├── letters.xbm │ │ │ ├── noletter.xbm │ │ │ ├── pattern.xbm │ │ │ ├── tcllogo.gif │ │ │ └── teapot.ppm │ │ ├── irbtk.rb │ │ ├── irbtkw.rbw │ │ ├── iso2022-kr.txt │ │ ├── menubar1.rb │ │ ├── menubar2.rb │ │ ├── menubar3.rb │ │ ├── msgs_rb │ │ │ ├── README │ │ │ ├── cs.msg │ │ │ ├── de.msg │ │ │ ├── el.msg │ │ │ ├── en.msg │ │ │ ├── en_gb.msg │ │ │ ├── eo.msg │ │ │ ├── es.msg │ │ │ ├── fr.msg │ │ │ ├── it.msg │ │ │ ├── ja.msg │ │ │ ├── nl.msg │ │ │ ├── pl.msg │ │ │ └── ru.msg │ │ ├── msgs_rb2 │ │ │ ├── README │ │ │ ├── de.msg │ │ │ └── ja.msg │ │ ├── msgs_tk │ │ │ ├── README │ │ │ ├── cs.msg │ │ │ ├── de.msg │ │ │ ├── el.msg │ │ │ ├── en.msg │ │ │ ├── en_gb.msg │ │ │ ├── eo.msg │ │ │ ├── es.msg │ │ │ ├── fr.msg │ │ │ ├── it.msg │ │ │ ├── ja.msg │ │ │ ├── license.terms │ │ │ ├── nl.msg │ │ │ ├── pl.msg │ │ │ └── ru.msg │ │ ├── multi-ip_sample.rb │ │ ├── multi-ip_sample2.rb │ │ ├── optobj_sample.rb │ │ ├── propagate.rb │ │ ├── remote-ip_sample.rb │ │ ├── remote-ip_sample2.rb │ │ ├── resource.en │ │ ├── resource.ja │ │ ├── safe-tk.rb │ │ ├── scrollframe.rb │ │ ├── tcltklib │ │ │ ├── batsu.gif │ │ │ ├── lines0.tcl │ │ │ ├── lines1.rb │ │ │ ├── lines2.rb │ │ │ ├── lines3.rb │ │ │ ├── lines4.rb │ │ │ ├── maru.gif │ │ │ ├── safeTk.rb │ │ │ ├── sample0.rb │ │ │ ├── sample1.rb │ │ │ └── sample2.rb │ │ ├── tkalignbox.rb │ │ ├── tkballoonhelp.rb │ │ ├── tkbiff.rb │ │ ├── tkbrowse.rb │ │ ├── tkcombobox.rb │ │ ├── tkdialog.rb │ │ ├── tkextlib │ │ │ ├── ICONS │ │ │ │ ├── Orig_LICENSE.txt │ │ │ │ ├── tkIcons │ │ │ │ ├── tkIcons-sample.kde │ │ │ │ ├── tkIcons.kde │ │ │ │ └── viewIcons.rb │ │ │ ├── blt │ │ │ │ ├── barchart5.rb │ │ │ │ ├── calendar.rb │ │ │ │ ├── graph6.rb │ │ │ │ ├── graph7.rb │ │ │ │ ├── graph7a.rb │ │ │ │ ├── graph7b.rb │ │ │ │ ├── graph7c.rb │ │ │ │ ├── images │ │ │ │ │ ├── buckskin.gif │ │ │ │ │ ├── chalk.gif │ │ │ │ │ ├── qv100.t.gif │ │ │ │ │ ├── rain.gif │ │ │ │ │ └── sample.gif │ │ │ │ ├── pareto.rb │ │ │ │ ├── plot1.rb │ │ │ │ ├── plot1b.rb │ │ │ │ ├── readme.txt │ │ │ │ ├── scripts │ │ │ │ │ └── stipples.rb │ │ │ │ ├── winop1.rb │ │ │ │ └── winop2.rb │ │ │ ├── bwidget │ │ │ │ ├── Orig_LICENSE.txt │ │ │ │ ├── basic.rb │ │ │ │ ├── bwidget.xbm │ │ │ │ ├── demo.rb │ │ │ │ ├── dnd.rb │ │ │ │ ├── manager.rb │ │ │ │ ├── select.rb │ │ │ │ ├── tmpldlg.rb │ │ │ │ ├── tree.rb │ │ │ │ └── x1.xbm │ │ │ ├── iwidgets │ │ │ │ ├── catalog_demo │ │ │ │ │ ├── Orig_LICENSE.txt │ │ │ │ │ └── images │ │ │ │ │ │ ├── box.xbm │ │ │ │ │ │ ├── clear.gif │ │ │ │ │ │ ├── close.gif │ │ │ │ │ │ ├── copy.gif │ │ │ │ │ │ ├── cut.gif │ │ │ │ │ │ ├── exit.gif │ │ │ │ │ │ ├── find.gif │ │ │ │ │ │ ├── help.gif │ │ │ │ │ │ ├── line.xbm │ │ │ │ │ │ ├── mag.gif │ │ │ │ │ │ ├── new.gif │ │ │ │ │ │ ├── open.gif │ │ │ │ │ │ ├── oval.xbm │ │ │ │ │ │ ├── paste.gif │ │ │ │ │ │ ├── points.xbm │ │ │ │ │ │ ├── poly.gif │ │ │ │ │ │ ├── print.gif │ │ │ │ │ │ ├── ruler.gif │ │ │ │ │ │ ├── save.gif │ │ │ │ │ │ ├── select.gif │ │ │ │ │ │ └── text.xbm │ │ │ │ └── sample │ │ │ │ │ ├── buttonbox.rb │ │ │ │ │ ├── calendar.rb │ │ │ │ │ ├── canvasprintbox.rb │ │ │ │ │ ├── canvasprintdialog.rb │ │ │ │ │ ├── checkbox.rb │ │ │ │ │ ├── combobox.rb │ │ │ │ │ ├── dateentry.rb │ │ │ │ │ ├── datefield.rb │ │ │ │ │ ├── dialog.rb │ │ │ │ │ ├── dialogshell.rb │ │ │ │ │ ├── disjointlistbox.rb │ │ │ │ │ ├── entryfield-1.rb │ │ │ │ │ ├── entryfield-2.rb │ │ │ │ │ ├── entryfield-3.rb │ │ │ │ │ ├── extbutton.rb │ │ │ │ │ ├── extfileselectionbox.rb │ │ │ │ │ ├── extfileselectiondialog.rb │ │ │ │ │ ├── feedback.rb │ │ │ │ │ ├── fileselectionbox.rb │ │ │ │ │ ├── fileselectiondialog.rb │ │ │ │ │ ├── finddialog.rb │ │ │ │ │ ├── hierarchy.rb │ │ │ │ │ ├── hyperhelp.rb │ │ │ │ │ ├── labeledframe.rb │ │ │ │ │ ├── labeledwidget.rb │ │ │ │ │ ├── mainwindow.rb │ │ │ │ │ ├── menubar.rb │ │ │ │ │ ├── menubar2.rb │ │ │ │ │ ├── messagebox1.rb │ │ │ │ │ ├── messagebox2.rb │ │ │ │ │ ├── messagedialog.rb │ │ │ │ │ ├── notebook.rb │ │ │ │ │ ├── notebook2.rb │ │ │ │ │ ├── optionmenu.rb │ │ │ │ │ ├── panedwindow.rb │ │ │ │ │ ├── panedwindow2.rb │ │ │ │ │ ├── promptdialog.rb │ │ │ │ │ ├── pushbutton.rb │ │ │ │ │ ├── radiobox.rb │ │ │ │ │ ├── scrolledcanvas.rb │ │ │ │ │ ├── scrolledframe.rb │ │ │ │ │ ├── scrolledhtml.rb │ │ │ │ │ ├── scrolledlistbox.rb │ │ │ │ │ ├── scrolledtext.rb │ │ │ │ │ ├── selectionbox.rb │ │ │ │ │ ├── selectiondialog.rb │ │ │ │ │ ├── shell.rb │ │ │ │ │ ├── spindate.rb │ │ │ │ │ ├── spinint.rb │ │ │ │ │ ├── spinner.rb │ │ │ │ │ ├── spintime.rb │ │ │ │ │ ├── tabnotebook.rb │ │ │ │ │ ├── tabnotebook2.rb │ │ │ │ │ ├── tabset.rb │ │ │ │ │ ├── timeentry.rb │ │ │ │ │ ├── timefield.rb │ │ │ │ │ ├── toolbar.rb │ │ │ │ │ └── watch.rb │ │ │ ├── tcllib │ │ │ │ ├── Orig_LICENSE.txt │ │ │ │ ├── datefield.rb │ │ │ │ ├── plotdemos1.rb │ │ │ │ ├── plotdemos2.rb │ │ │ │ ├── plotdemos3.rb │ │ │ │ └── xyplot.rb │ │ │ ├── tile │ │ │ │ ├── Orig_LICENSE.txt │ │ │ │ ├── demo.rb │ │ │ │ ├── iconlib.tcl │ │ │ │ ├── readme.txt │ │ │ │ ├── repeater.tcl │ │ │ │ ├── themes │ │ │ │ │ ├── blue │ │ │ │ │ │ ├── blue.tcl │ │ │ │ │ │ ├── blue │ │ │ │ │ │ │ ├── arrowdown-h.gif │ │ │ │ │ │ │ ├── arrowdown-p.gif │ │ │ │ │ │ │ ├── arrowdown.gif │ │ │ │ │ │ │ ├── arrowleft-h.gif │ │ │ │ │ │ │ ├── arrowleft-p.gif │ │ │ │ │ │ │ ├── arrowleft.gif │ │ │ │ │ │ │ ├── arrowright-h.gif │ │ │ │ │ │ │ ├── arrowright-p.gif │ │ │ │ │ │ │ ├── arrowright.gif │ │ │ │ │ │ │ ├── arrowup-h.gif │ │ │ │ │ │ │ ├── arrowup-p.gif │ │ │ │ │ │ │ ├── arrowup.gif │ │ │ │ │ │ │ ├── button-h.gif │ │ │ │ │ │ │ ├── button-n.gif │ │ │ │ │ │ │ ├── button-n.xcf │ │ │ │ │ │ │ ├── button-p.gif │ │ │ │ │ │ │ ├── check-hc.gif │ │ │ │ │ │ │ ├── check-hu.gif │ │ │ │ │ │ │ ├── check-nc.gif │ │ │ │ │ │ │ ├── check-nu.gif │ │ │ │ │ │ │ ├── radio-hc.gif │ │ │ │ │ │ │ ├── radio-hu.gif │ │ │ │ │ │ │ ├── radio-nc.gif │ │ │ │ │ │ │ ├── radio-nu.gif │ │ │ │ │ │ │ ├── sb-thumb-p.gif │ │ │ │ │ │ │ ├── sb-thumb.gif │ │ │ │ │ │ │ ├── sb-vthumb-p.gif │ │ │ │ │ │ │ ├── sb-vthumb.gif │ │ │ │ │ │ │ ├── slider-p.gif │ │ │ │ │ │ │ ├── slider.gif │ │ │ │ │ │ │ ├── vslider-p.gif │ │ │ │ │ │ │ └── vslider.gif │ │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ │ ├── keramik │ │ │ │ │ │ ├── keramik.tcl │ │ │ │ │ │ ├── keramik │ │ │ │ │ │ │ ├── arrowdown-n.gif │ │ │ │ │ │ │ ├── arrowdown-p.gif │ │ │ │ │ │ │ ├── arrowleft-n.gif │ │ │ │ │ │ │ ├── arrowleft-p.gif │ │ │ │ │ │ │ ├── arrowright-n.gif │ │ │ │ │ │ │ ├── arrowright-p.gif │ │ │ │ │ │ │ ├── arrowup-n.gif │ │ │ │ │ │ │ ├── arrowup-p.gif │ │ │ │ │ │ │ ├── button-d.gif │ │ │ │ │ │ │ ├── button-h.gif │ │ │ │ │ │ │ ├── button-n.gif │ │ │ │ │ │ │ ├── button-p.gif │ │ │ │ │ │ │ ├── button-s.gif │ │ │ │ │ │ │ ├── check-c.gif │ │ │ │ │ │ │ ├── check-u.gif │ │ │ │ │ │ │ ├── hsb-n.gif │ │ │ │ │ │ │ ├── hsb-p.gif │ │ │ │ │ │ │ ├── hslider-n.gif │ │ │ │ │ │ │ ├── mbut-a.gif │ │ │ │ │ │ │ ├── mbut-arrow-n.gif │ │ │ │ │ │ │ ├── mbut-d.gif │ │ │ │ │ │ │ ├── mbut-n.gif │ │ │ │ │ │ │ ├── radio-c.gif │ │ │ │ │ │ │ ├── radio-u.gif │ │ │ │ │ │ │ ├── tab-n.gif │ │ │ │ │ │ │ ├── tab-p.gif │ │ │ │ │ │ │ ├── tbar-a.gif │ │ │ │ │ │ │ ├── tbar-n.gif │ │ │ │ │ │ │ ├── tbar-p.gif │ │ │ │ │ │ │ ├── vsb-n.gif │ │ │ │ │ │ │ ├── vsb-p.gif │ │ │ │ │ │ │ └── vslider-n.gif │ │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ │ ├── kroc.rb │ │ │ │ │ ├── kroc │ │ │ │ │ │ ├── kroc.tcl │ │ │ │ │ │ ├── kroc │ │ │ │ │ │ │ ├── button-h.gif │ │ │ │ │ │ │ ├── button-n.gif │ │ │ │ │ │ │ ├── button-p.gif │ │ │ │ │ │ │ ├── check-hc.gif │ │ │ │ │ │ │ ├── check-hu.gif │ │ │ │ │ │ │ ├── check-nc.gif │ │ │ │ │ │ │ ├── check-nu.gif │ │ │ │ │ │ │ ├── radio-hc.gif │ │ │ │ │ │ │ ├── radio-hu.gif │ │ │ │ │ │ │ ├── radio-nc.gif │ │ │ │ │ │ │ └── radio-nu.gif │ │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ │ └── plastik │ │ │ │ │ │ ├── pkgIndex.tcl │ │ │ │ │ │ ├── plastik.tcl │ │ │ │ │ │ └── plastik │ │ │ │ │ │ ├── arrowdown-n.gif │ │ │ │ │ │ ├── arrowdown-p.gif │ │ │ │ │ │ ├── arrowleft-n.gif │ │ │ │ │ │ ├── arrowleft-p.gif │ │ │ │ │ │ ├── arrowright-n.gif │ │ │ │ │ │ ├── arrowright-p.gif │ │ │ │ │ │ ├── arrowup-n.gif │ │ │ │ │ │ ├── arrowup-p.gif │ │ │ │ │ │ ├── button-h.gif │ │ │ │ │ │ ├── button-n.gif │ │ │ │ │ │ ├── button-p.gif │ │ │ │ │ │ ├── check-hc.gif │ │ │ │ │ │ ├── check-hu.gif │ │ │ │ │ │ ├── check-nc.gif │ │ │ │ │ │ ├── check-nu.gif │ │ │ │ │ │ ├── check-pc.gif │ │ │ │ │ │ ├── hsb-n.gif │ │ │ │ │ │ ├── hslider-n.gif │ │ │ │ │ │ ├── radio-hc.gif │ │ │ │ │ │ ├── radio-hu.gif │ │ │ │ │ │ ├── radio-nc.gif │ │ │ │ │ │ ├── radio-nu.gif │ │ │ │ │ │ ├── radio-pc.gif │ │ │ │ │ │ ├── vsb-n.gif │ │ │ │ │ │ └── vslider-n.gif │ │ │ │ └── toolbutton.tcl │ │ │ ├── tkHTML │ │ │ │ ├── Orig_COPYRIGHT.txt │ │ │ │ ├── README │ │ │ │ ├── hv.rb │ │ │ │ ├── page1 │ │ │ │ │ ├── image1 │ │ │ │ │ ├── image10 │ │ │ │ │ ├── image11 │ │ │ │ │ ├── image12 │ │ │ │ │ ├── image13 │ │ │ │ │ ├── image14 │ │ │ │ │ ├── image2 │ │ │ │ │ ├── image3 │ │ │ │ │ ├── image4 │ │ │ │ │ ├── image5 │ │ │ │ │ ├── image6 │ │ │ │ │ ├── image7 │ │ │ │ │ ├── image8 │ │ │ │ │ ├── image9 │ │ │ │ │ └── index.html │ │ │ │ ├── page2 │ │ │ │ │ ├── image1 │ │ │ │ │ ├── image10 │ │ │ │ │ ├── image11 │ │ │ │ │ ├── image12 │ │ │ │ │ ├── image13 │ │ │ │ │ ├── image14 │ │ │ │ │ ├── image15 │ │ │ │ │ ├── image16 │ │ │ │ │ ├── image17 │ │ │ │ │ ├── image18 │ │ │ │ │ ├── image19 │ │ │ │ │ ├── image2 │ │ │ │ │ ├── image20 │ │ │ │ │ ├── image21 │ │ │ │ │ ├── image22 │ │ │ │ │ ├── image23 │ │ │ │ │ ├── image24 │ │ │ │ │ ├── image25 │ │ │ │ │ ├── image26 │ │ │ │ │ ├── image27 │ │ │ │ │ ├── image28 │ │ │ │ │ ├── image29 │ │ │ │ │ ├── image3 │ │ │ │ │ ├── image30 │ │ │ │ │ ├── image31 │ │ │ │ │ ├── image32 │ │ │ │ │ ├── image33 │ │ │ │ │ ├── image34 │ │ │ │ │ ├── image35 │ │ │ │ │ ├── image36 │ │ │ │ │ ├── image37 │ │ │ │ │ ├── image38 │ │ │ │ │ ├── image39 │ │ │ │ │ ├── image4 │ │ │ │ │ ├── image5 │ │ │ │ │ ├── image6 │ │ │ │ │ ├── image7 │ │ │ │ │ ├── image8 │ │ │ │ │ ├── image9 │ │ │ │ │ └── index.html │ │ │ │ ├── page3 │ │ │ │ │ ├── image1 │ │ │ │ │ ├── image10 │ │ │ │ │ ├── image11 │ │ │ │ │ ├── image12 │ │ │ │ │ ├── image13 │ │ │ │ │ ├── image14 │ │ │ │ │ ├── image2 │ │ │ │ │ ├── image3 │ │ │ │ │ ├── image4 │ │ │ │ │ ├── image5 │ │ │ │ │ ├── image6 │ │ │ │ │ ├── image7 │ │ │ │ │ ├── image8 │ │ │ │ │ ├── image9 │ │ │ │ │ └── index.html │ │ │ │ ├── page4 │ │ │ │ │ ├── image1 │ │ │ │ │ ├── image2 │ │ │ │ │ ├── image3 │ │ │ │ │ ├── image4 │ │ │ │ │ ├── image5 │ │ │ │ │ ├── image6 │ │ │ │ │ ├── image7 │ │ │ │ │ ├── image8 │ │ │ │ │ ├── image9 │ │ │ │ │ └── index.html │ │ │ │ └── ss.rb │ │ │ ├── tkimg │ │ │ │ ├── demo.rb │ │ │ │ ├── license_terms_of_Img_extension │ │ │ │ └── readme.txt │ │ │ ├── tktable │ │ │ │ ├── Orig_LICENSE.txt │ │ │ │ ├── basic.rb │ │ │ │ ├── buttons.rb │ │ │ │ ├── command.rb │ │ │ │ ├── debug.rb │ │ │ │ ├── dynarows.rb │ │ │ │ ├── maxsize.rb │ │ │ │ ├── spreadsheet.rb │ │ │ │ ├── tcllogo.gif │ │ │ │ └── valid.rb │ │ │ ├── treectrl │ │ │ │ ├── bitmaps.rb │ │ │ │ ├── demo.rb │ │ │ │ ├── explorer.rb │ │ │ │ ├── help.rb │ │ │ │ ├── imovie.rb │ │ │ │ ├── layout.rb │ │ │ │ ├── mailwasher.rb │ │ │ │ ├── outlook-folders.rb │ │ │ │ ├── outlook-newgroup.rb │ │ │ │ ├── pics │ │ │ │ │ ├── big-dll.gif │ │ │ │ │ ├── big-exe.gif │ │ │ │ │ ├── big-file.gif │ │ │ │ │ ├── big-folder.gif │ │ │ │ │ ├── big-txt.gif │ │ │ │ │ ├── checked.gif │ │ │ │ │ ├── file.gif │ │ │ │ │ ├── folder-closed.gif │ │ │ │ │ ├── folder-open.gif │ │ │ │ │ ├── help-book-closed.gif │ │ │ │ │ ├── help-book-open.gif │ │ │ │ │ ├── help-page.gif │ │ │ │ │ ├── imovie-01.gif │ │ │ │ │ ├── imovie-02.gif │ │ │ │ │ ├── imovie-03.gif │ │ │ │ │ ├── imovie-04.gif │ │ │ │ │ ├── imovie-05.gif │ │ │ │ │ ├── imovie-06.gif │ │ │ │ │ ├── imovie-07.gif │ │ │ │ │ ├── internet-check-off.gif │ │ │ │ │ ├── internet-check-on.gif │ │ │ │ │ ├── internet-print.gif │ │ │ │ │ ├── internet-radio-off.gif │ │ │ │ │ ├── internet-radio-on.gif │ │ │ │ │ ├── internet-search.gif │ │ │ │ │ ├── internet-security.gif │ │ │ │ │ ├── mac-collapse.gif │ │ │ │ │ ├── mac-expand.gif │ │ │ │ │ ├── outlook-arrow.gif │ │ │ │ │ ├── outlook-clip.gif │ │ │ │ │ ├── outlook-deleted.gif │ │ │ │ │ ├── outlook-draft.gif │ │ │ │ │ ├── outlook-folder.gif │ │ │ │ │ ├── outlook-group.gif │ │ │ │ │ ├── outlook-inbox.gif │ │ │ │ │ ├── outlook-local.gif │ │ │ │ │ ├── outlook-main.gif │ │ │ │ │ ├── outlook-outbox.gif │ │ │ │ │ ├── outlook-read-2.gif │ │ │ │ │ ├── outlook-read.gif │ │ │ │ │ ├── outlook-sent.gif │ │ │ │ │ ├── outlook-server.gif │ │ │ │ │ ├── outlook-unread.gif │ │ │ │ │ ├── outlook-watch.gif │ │ │ │ │ ├── sky.gif │ │ │ │ │ ├── small-dll.gif │ │ │ │ │ ├── small-exe.gif │ │ │ │ │ ├── small-file.gif │ │ │ │ │ ├── small-folder.gif │ │ │ │ │ ├── small-txt.gif │ │ │ │ │ └── unchecked.gif │ │ │ │ ├── random.rb │ │ │ │ ├── readme.txt │ │ │ │ └── www-options.rb │ │ │ └── vu │ │ │ │ ├── Orig_LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── canvItems.rb │ │ │ │ ├── canvSticker.rb │ │ │ │ ├── canvSticker2.rb │ │ │ │ ├── dial_demo.rb │ │ │ │ ├── m128_000.xbm │ │ │ │ ├── oscilloscope.rb │ │ │ │ ├── pie.rb │ │ │ │ └── vu_demo.rb │ │ ├── tkfrom.rb │ │ ├── tkhello.rb │ │ ├── tkline.rb │ │ ├── tkmenubutton.rb │ │ ├── tkmsgcat-load_rb.rb │ │ ├── tkmsgcat-load_rb2.rb │ │ ├── tkmsgcat-load_tk.rb │ │ ├── tkmulticolumnlist.rb │ │ ├── tkmultilistbox.rb │ │ ├── tkmultilistframe.rb │ │ ├── tkoptdb-safeTk.rb │ │ ├── tkoptdb.rb │ │ ├── tkrttimer.rb │ │ ├── tksleep_sample.rb │ │ ├── tktextframe.rb │ │ ├── tktextio.rb │ │ ├── tktimer.rb │ │ ├── tktimer2.rb │ │ ├── tktimer3.rb │ │ ├── tktree.rb │ │ ├── tktree.tcl │ │ └── ttk_wrapper.rb │ ├── stubs.c │ ├── stubs.h │ ├── tcltklib.c │ └── tkutil │ │ ├── depend │ │ ├── extconf.rb │ │ └── tkutil.c ├── win32 │ ├── extconf.rb │ └── lib │ │ ├── Win32API.rb │ │ └── win32 │ │ ├── importer.rb │ │ ├── registry.rb │ │ ├── resolv.rb │ │ └── sspi.rb ├── win32ole │ ├── depend │ ├── extconf.rb │ ├── lib │ │ └── win32ole │ │ │ └── property.rb │ ├── sample │ │ ├── excel1.rb │ │ ├── excel2.rb │ │ ├── excel3.rb │ │ ├── ie.rb │ │ ├── ieconst.rb │ │ ├── ienavi.rb │ │ ├── ienavi2.rb │ │ ├── oledirs.rb │ │ ├── olegen.rb │ │ └── xml.rb │ └── win32ole.c └── zlib │ ├── depend │ ├── extconf.rb │ └── zlib.c ├── file.c ├── gc.c ├── gc.h ├── gem_prelude.rb ├── golf_prelude.rb ├── goruby.c ├── hash.c ├── ia64.s ├── include ├── ruby.h └── ruby │ ├── backward │ ├── classext.h │ ├── rubyio.h │ ├── rubysig.h │ ├── st.h │ └── util.h │ ├── debug.h │ ├── defines.h │ ├── encoding.h │ ├── intern.h │ ├── io.h │ ├── missing.h │ ├── oniguruma.h │ ├── re.h │ ├── regex.h │ ├── ruby.h │ ├── st.h │ ├── subst.h │ ├── thread.h │ ├── util.h │ ├── version.h │ ├── vm.h │ └── win32.h ├── inits.c ├── insns.def ├── internal.h ├── io.c ├── iseq.c ├── iseq.h ├── lex.c.blt ├── lib ├── English.rb ├── abbrev.rb ├── base64.rb ├── benchmark.rb ├── cgi.rb ├── cgi │ ├── cookie.rb │ ├── core.rb │ ├── html.rb │ ├── session.rb │ ├── session │ │ └── pstore.rb │ └── util.rb ├── cmath.rb ├── complex.rb ├── csv.rb ├── debug.rb ├── delegate.rb ├── drb.rb ├── drb │ ├── acl.rb │ ├── drb.rb │ ├── eq.rb │ ├── extserv.rb │ ├── extservm.rb │ ├── gw.rb │ ├── invokemethod.rb │ ├── observer.rb │ ├── ssl.rb │ ├── timeridconv.rb │ └── unix.rb ├── e2mmap.rb ├── erb.rb ├── fileutils.rb ├── find.rb ├── forwardable.rb ├── getoptlong.rb ├── gserver.rb ├── ipaddr.rb ├── irb.rb ├── irb │ ├── cmd │ │ ├── chws.rb │ │ ├── fork.rb │ │ ├── help.rb │ │ ├── load.rb │ │ ├── nop.rb │ │ ├── pushws.rb │ │ └── subirb.rb │ ├── completion.rb │ ├── context.rb │ ├── ext │ │ ├── change-ws.rb │ │ ├── history.rb │ │ ├── loader.rb │ │ ├── math-mode.rb │ │ ├── multi-irb.rb │ │ ├── save-history.rb │ │ ├── tracer.rb │ │ ├── use-loader.rb │ │ └── workspaces.rb │ ├── extend-command.rb │ ├── frame.rb │ ├── help.rb │ ├── init.rb │ ├── input-method.rb │ ├── inspector.rb │ ├── lc │ │ ├── .document │ │ ├── error.rb │ │ ├── help-message │ │ └── ja │ │ │ ├── encoding_aliases.rb │ │ │ ├── error.rb │ │ │ └── help-message │ ├── locale.rb │ ├── magic-file.rb │ ├── notifier.rb │ ├── output-method.rb │ ├── ruby-lex.rb │ ├── ruby-token.rb │ ├── slex.rb │ ├── src_encoding.rb │ ├── version.rb │ ├── workspace.rb │ ├── ws-for-case-2.rb │ └── xmp.rb ├── logger.rb ├── mathn.rb ├── matrix.rb ├── matrix │ ├── eigenvalue_decomposition.rb │ └── lup_decomposition.rb ├── minitest │ ├── .document │ ├── README.txt │ ├── autorun.rb │ ├── benchmark.rb │ ├── hell.rb │ ├── mock.rb │ ├── parallel_each.rb │ ├── pride.rb │ ├── spec.rb │ └── unit.rb ├── mkmf.rb ├── monitor.rb ├── mutex_m.rb ├── net │ ├── ftp.rb │ ├── http.rb │ ├── http │ │ ├── backward.rb │ │ ├── exceptions.rb │ │ ├── generic_request.rb │ │ ├── header.rb │ │ ├── proxy_delta.rb │ │ ├── request.rb │ │ ├── requests.rb │ │ ├── response.rb │ │ └── responses.rb │ ├── https.rb │ ├── imap.rb │ ├── pop.rb │ ├── protocol.rb │ ├── smtp.rb │ └── telnet.rb ├── observer.rb ├── open-uri.rb ├── open3.rb ├── optparse.rb ├── optparse │ ├── ac.rb │ ├── date.rb │ ├── shellwords.rb │ ├── time.rb │ ├── uri.rb │ └── version.rb ├── ostruct.rb ├── pp.rb ├── prettyprint.rb ├── prime.rb ├── profile.rb ├── profiler.rb ├── pstore.rb ├── racc │ ├── parser.rb │ └── rdoc │ │ └── grammar.en.rdoc ├── rake.rb ├── rake │ ├── alt_system.rb │ ├── application.rb │ ├── backtrace.rb │ ├── clean.rb │ ├── cloneable.rb │ ├── contrib │ │ ├── compositepublisher.rb │ │ ├── ftptools.rb │ │ ├── publisher.rb │ │ ├── rubyforgepublisher.rb │ │ ├── sshpublisher.rb │ │ └── sys.rb │ ├── default_loader.rb │ ├── dsl_definition.rb │ ├── early_time.rb │ ├── ext │ │ ├── core.rb │ │ ├── module.rb │ │ ├── string.rb │ │ └── time.rb │ ├── file_creation_task.rb │ ├── file_list.rb │ ├── file_task.rb │ ├── file_utils.rb │ ├── file_utils_ext.rb │ ├── gempackagetask.rb │ ├── invocation_chain.rb │ ├── invocation_exception_mixin.rb │ ├── lib │ │ ├── .document │ │ └── project.rake │ ├── linked_list.rb │ ├── loaders │ │ └── makefile.rb │ ├── multi_task.rb │ ├── name_space.rb │ ├── packagetask.rb │ ├── pathmap.rb │ ├── phony.rb │ ├── private_reader.rb │ ├── promise.rb │ ├── pseudo_status.rb │ ├── rake_module.rb │ ├── rake_test_loader.rb │ ├── rdoctask.rb │ ├── ruby182_test_unit_fix.rb │ ├── rule_recursion_overflow_error.rb │ ├── runtest.rb │ ├── scope.rb │ ├── task.rb │ ├── task_argument_error.rb │ ├── task_arguments.rb │ ├── task_manager.rb │ ├── tasklib.rb │ ├── testtask.rb │ ├── thread_history_display.rb │ ├── thread_pool.rb │ ├── trace_output.rb │ ├── version.rb │ └── win32.rb ├── rational.rb ├── rbconfig │ ├── .document │ ├── datadir.rb │ └── obsolete.rb ├── rdoc.rb ├── rdoc │ ├── alias.rb │ ├── anon_class.rb │ ├── any_method.rb │ ├── attr.rb │ ├── class_module.rb │ ├── code_object.rb │ ├── code_objects.rb │ ├── comment.rb │ ├── constant.rb │ ├── context.rb │ ├── context │ │ └── section.rb │ ├── cross_reference.rb │ ├── encoding.rb │ ├── erb_partial.rb │ ├── erbio.rb │ ├── extend.rb │ ├── generator.rb │ ├── generator │ │ ├── darkfish.rb │ │ ├── json_index.rb │ │ ├── markup.rb │ │ ├── ri.rb │ │ └── template │ │ │ ├── darkfish │ │ │ ├── .document │ │ │ ├── _footer.rhtml │ │ │ ├── _head.rhtml │ │ │ ├── _sidebar_VCS_info.rhtml │ │ │ ├── _sidebar_classes.rhtml │ │ │ ├── _sidebar_extends.rhtml │ │ │ ├── _sidebar_in_files.rhtml │ │ │ ├── _sidebar_includes.rhtml │ │ │ ├── _sidebar_installed.rhtml │ │ │ ├── _sidebar_methods.rhtml │ │ │ ├── _sidebar_navigation.rhtml │ │ │ ├── _sidebar_pages.rhtml │ │ │ ├── _sidebar_parent.rhtml │ │ │ ├── _sidebar_search.rhtml │ │ │ ├── _sidebar_sections.rhtml │ │ │ ├── _sidebar_table_of_contents.rhtml │ │ │ ├── class.rhtml │ │ │ ├── fonts.css │ │ │ ├── fonts │ │ │ │ ├── Lato-Light.ttf │ │ │ │ ├── Lato-LightItalic.ttf │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ ├── Lato-RegularItalic.ttf │ │ │ │ ├── SourceCodePro-Bold.ttf │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ ├── images │ │ │ │ ├── add.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── brick.png │ │ │ │ ├── brick_link.png │ │ │ │ ├── bug.png │ │ │ │ ├── bullet_black.png │ │ │ │ ├── bullet_toggle_minus.png │ │ │ │ ├── bullet_toggle_plus.png │ │ │ │ ├── date.png │ │ │ │ ├── delete.png │ │ │ │ ├── find.png │ │ │ │ ├── loadingAnimation.gif │ │ │ │ ├── macFFBgHack.png │ │ │ │ ├── package.png │ │ │ │ ├── page_green.png │ │ │ │ ├── page_white_text.png │ │ │ │ ├── page_white_width.png │ │ │ │ ├── plugin.png │ │ │ │ ├── ruby.png │ │ │ │ ├── tag_blue.png │ │ │ │ ├── tag_green.png │ │ │ │ ├── transparent.png │ │ │ │ ├── wrench.png │ │ │ │ ├── wrench_orange.png │ │ │ │ └── zoom.png │ │ │ ├── index.rhtml │ │ │ ├── js │ │ │ │ ├── darkfish.js │ │ │ │ ├── jquery.js │ │ │ │ └── search.js │ │ │ ├── page.rhtml │ │ │ ├── rdoc.css │ │ │ ├── servlet_not_found.rhtml │ │ │ ├── servlet_root.rhtml │ │ │ └── table_of_contents.rhtml │ │ │ └── json_index │ │ │ ├── .document │ │ │ └── js │ │ │ ├── navigation.js │ │ │ └── searcher.js │ ├── ghost_method.rb │ ├── include.rb │ ├── known_classes.rb │ ├── markdown.rb │ ├── markdown │ │ ├── entities.rb │ │ └── literals_1_9.rb │ ├── markup.rb │ ├── markup │ │ ├── attr_changer.rb │ │ ├── attr_span.rb │ │ ├── attribute_manager.rb │ │ ├── attributes.rb │ │ ├── blank_line.rb │ │ ├── block_quote.rb │ │ ├── document.rb │ │ ├── formatter.rb │ │ ├── formatter_test_case.rb │ │ ├── hard_break.rb │ │ ├── heading.rb │ │ ├── include.rb │ │ ├── indented_paragraph.rb │ │ ├── inline.rb │ │ ├── list.rb │ │ ├── list_item.rb │ │ ├── paragraph.rb │ │ ├── parser.rb │ │ ├── pre_process.rb │ │ ├── raw.rb │ │ ├── rule.rb │ │ ├── special.rb │ │ ├── text_formatter_test_case.rb │ │ ├── to_ansi.rb │ │ ├── to_bs.rb │ │ ├── to_html.rb │ │ ├── to_html_crossref.rb │ │ ├── to_html_snippet.rb │ │ ├── to_joined_paragraph.rb │ │ ├── to_label.rb │ │ ├── to_markdown.rb │ │ ├── to_rdoc.rb │ │ ├── to_table_of_contents.rb │ │ ├── to_test.rb │ │ ├── to_tt_only.rb │ │ └── verbatim.rb │ ├── meta_method.rb │ ├── method_attr.rb │ ├── mixin.rb │ ├── normal_class.rb │ ├── normal_module.rb │ ├── options.rb │ ├── parser.rb │ ├── parser │ │ ├── c.rb │ │ ├── changelog.rb │ │ ├── markdown.rb │ │ ├── rd.rb │ │ ├── ruby.rb │ │ ├── ruby_tools.rb │ │ ├── simple.rb │ │ └── text.rb │ ├── rd.rb │ ├── rd │ │ ├── block_parser.rb │ │ ├── inline.rb │ │ └── inline_parser.rb │ ├── rdoc.rb │ ├── require.rb │ ├── ri.rb │ ├── ri │ │ ├── driver.rb │ │ ├── formatter.rb │ │ ├── paths.rb │ │ └── store.rb │ ├── ruby_lex.rb │ ├── ruby_token.rb │ ├── rubygems_hook.rb │ ├── servlet.rb │ ├── single_class.rb │ ├── stats.rb │ ├── stats │ │ ├── normal.rb │ │ ├── quiet.rb │ │ └── verbose.rb │ ├── store.rb │ ├── task.rb │ ├── test_case.rb │ ├── text.rb │ ├── token_stream.rb │ ├── tom_doc.rb │ └── top_level.rb ├── resolv-replace.rb ├── resolv.rb ├── rexml │ ├── attlistdecl.rb │ ├── attribute.rb │ ├── cdata.rb │ ├── child.rb │ ├── comment.rb │ ├── doctype.rb │ ├── document.rb │ ├── dtd │ │ ├── attlistdecl.rb │ │ ├── dtd.rb │ │ ├── elementdecl.rb │ │ ├── entitydecl.rb │ │ └── notationdecl.rb │ ├── element.rb │ ├── encoding.rb │ ├── entity.rb │ ├── formatters │ │ ├── default.rb │ │ ├── pretty.rb │ │ └── transitive.rb │ ├── functions.rb │ ├── instruction.rb │ ├── light │ │ └── node.rb │ ├── namespace.rb │ ├── node.rb │ ├── output.rb │ ├── parent.rb │ ├── parseexception.rb │ ├── parsers │ │ ├── baseparser.rb │ │ ├── lightparser.rb │ │ ├── pullparser.rb │ │ ├── sax2parser.rb │ │ ├── streamparser.rb │ │ ├── treeparser.rb │ │ ├── ultralightparser.rb │ │ └── xpathparser.rb │ ├── quickpath.rb │ ├── rexml.rb │ ├── sax2listener.rb │ ├── security.rb │ ├── source.rb │ ├── streamlistener.rb │ ├── syncenumerator.rb │ ├── text.rb │ ├── undefinednamespaceexception.rb │ ├── validation │ │ ├── relaxng.rb │ │ ├── validation.rb │ │ └── validationexception.rb │ ├── xmldecl.rb │ ├── xmltokens.rb │ ├── xpath.rb │ └── xpath_parser.rb ├── rinda │ ├── rinda.rb │ ├── ring.rb │ └── tuplespace.rb ├── rss.rb ├── rss │ ├── 0.9.rb │ ├── 1.0.rb │ ├── 2.0.rb │ ├── atom.rb │ ├── content.rb │ ├── content │ │ ├── 1.0.rb │ │ └── 2.0.rb │ ├── converter.rb │ ├── dublincore.rb │ ├── dublincore │ │ ├── 1.0.rb │ │ ├── 2.0.rb │ │ └── atom.rb │ ├── image.rb │ ├── itunes.rb │ ├── maker.rb │ ├── maker │ │ ├── 0.9.rb │ │ ├── 1.0.rb │ │ ├── 2.0.rb │ │ ├── atom.rb │ │ ├── base.rb │ │ ├── content.rb │ │ ├── dublincore.rb │ │ ├── entry.rb │ │ ├── feed.rb │ │ ├── image.rb │ │ ├── itunes.rb │ │ ├── slash.rb │ │ ├── syndication.rb │ │ ├── taxonomy.rb │ │ └── trackback.rb │ ├── parser.rb │ ├── rexmlparser.rb │ ├── rss.rb │ ├── slash.rb │ ├── syndication.rb │ ├── taxonomy.rb │ ├── trackback.rb │ ├── utils.rb │ ├── xml-stylesheet.rb │ ├── xml.rb │ ├── xmlparser.rb │ └── xmlscanner.rb ├── rubygems.rb ├── rubygems │ ├── LICENSE.txt │ ├── available_set.rb │ ├── basic_specification.rb │ ├── command.rb │ ├── command_manager.rb │ ├── commands │ │ ├── build_command.rb │ │ ├── cert_command.rb │ │ ├── check_command.rb │ │ ├── cleanup_command.rb │ │ ├── contents_command.rb │ │ ├── dependency_command.rb │ │ ├── environment_command.rb │ │ ├── fetch_command.rb │ │ ├── generate_index_command.rb │ │ ├── help_command.rb │ │ ├── install_command.rb │ │ ├── list_command.rb │ │ ├── lock_command.rb │ │ ├── mirror_command.rb │ │ ├── outdated_command.rb │ │ ├── owner_command.rb │ │ ├── pristine_command.rb │ │ ├── push_command.rb │ │ ├── query_command.rb │ │ ├── rdoc_command.rb │ │ ├── search_command.rb │ │ ├── server_command.rb │ │ ├── setup_command.rb │ │ ├── sources_command.rb │ │ ├── specification_command.rb │ │ ├── stale_command.rb │ │ ├── uninstall_command.rb │ │ ├── unpack_command.rb │ │ ├── update_command.rb │ │ ├── which_command.rb │ │ └── yank_command.rb │ ├── compatibility.rb │ ├── config_file.rb │ ├── core_ext │ │ ├── kernel_gem.rb │ │ └── kernel_require.rb │ ├── defaults.rb │ ├── dependency.rb │ ├── dependency_installer.rb │ ├── dependency_list.rb │ ├── dependency_resolver.rb │ ├── dependency_resolver │ │ ├── activation_request.rb │ │ ├── api_set.rb │ │ ├── api_specification.rb │ │ ├── composed_set.rb │ │ ├── current_set.rb │ │ ├── dependency_conflict.rb │ │ ├── dependency_request.rb │ │ ├── index_set.rb │ │ ├── index_specification.rb │ │ ├── installed_specification.rb │ │ ├── installer_set.rb │ │ ├── vendor_set.rb │ │ └── vendor_specification.rb │ ├── deprecate.rb │ ├── doctor.rb │ ├── errors.rb │ ├── exceptions.rb │ ├── ext.rb │ ├── ext │ │ ├── build_error.rb │ │ ├── builder.rb │ │ ├── cmake_builder.rb │ │ ├── configure_builder.rb │ │ ├── ext_conf_builder.rb │ │ └── rake_builder.rb │ ├── gem_runner.rb │ ├── gemcutter_utilities.rb │ ├── indexer.rb │ ├── install_default_message.rb │ ├── install_message.rb │ ├── install_update_options.rb │ ├── installer.rb │ ├── installer_test_case.rb │ ├── local_remote_options.rb │ ├── mock_gem_ui.rb │ ├── name_tuple.rb │ ├── package.rb │ ├── package │ │ ├── digest_io.rb │ │ ├── old.rb │ │ ├── tar_header.rb │ │ ├── tar_reader.rb │ │ ├── tar_reader │ │ │ └── entry.rb │ │ ├── tar_test_case.rb │ │ └── tar_writer.rb │ ├── package_task.rb │ ├── path_support.rb │ ├── platform.rb │ ├── psych_additions.rb │ ├── psych_tree.rb │ ├── rdoc.rb │ ├── remote_fetcher.rb │ ├── request.rb │ ├── request_set.rb │ ├── request_set │ │ └── gem_dependency_api.rb │ ├── requirement.rb │ ├── security.rb │ ├── security │ │ ├── policies.rb │ │ ├── policy.rb │ │ ├── signer.rb │ │ └── trust_dir.rb │ ├── server.rb │ ├── source.rb │ ├── source │ │ ├── installed.rb │ │ ├── local.rb │ │ ├── specific_file.rb │ │ └── vendor.rb │ ├── source_list.rb │ ├── source_local.rb │ ├── source_specific_file.rb │ ├── spec_fetcher.rb │ ├── specification.rb │ ├── ssl_certs │ │ ├── .document │ │ ├── Class3PublicPrimaryCertificationAuthority.pem │ │ ├── EntrustnetSecureServerCertificationAuthority.pem │ │ └── GeoTrustGlobalCA.pem │ ├── stub_specification.rb │ ├── syck_hack.rb │ ├── test_case.rb │ ├── test_utilities.rb │ ├── text.rb │ ├── uninstaller.rb │ ├── uri_formatter.rb │ ├── user_interaction.rb │ ├── util │ │ └── list.rb │ ├── validator.rb │ ├── version.rb │ └── version_option.rb ├── scanf.rb ├── securerandom.rb ├── set.rb ├── shell.rb ├── shell │ ├── builtin-command.rb │ ├── command-processor.rb │ ├── error.rb │ ├── filter.rb │ ├── process-controller.rb │ ├── system-command.rb │ └── version.rb ├── shellwords.rb ├── singleton.rb ├── sync.rb ├── tempfile.rb ├── test │ ├── unit.rb │ └── unit │ │ ├── assertions.rb │ │ ├── parallel.rb │ │ ├── test-unit.gemspec │ │ └── testcase.rb ├── thwait.rb ├── time.rb ├── timeout.rb ├── tmpdir.rb ├── tracer.rb ├── tsort.rb ├── ubygems.rb ├── un.rb ├── uri.rb ├── uri │ ├── common.rb │ ├── ftp.rb │ ├── generic.rb │ ├── http.rb │ ├── https.rb │ ├── ldap.rb │ ├── ldaps.rb │ └── mailto.rb ├── weakref.rb ├── webrick.rb ├── webrick │ ├── accesslog.rb │ ├── cgi.rb │ ├── compat.rb │ ├── config.rb │ ├── cookie.rb │ ├── htmlutils.rb │ ├── httpauth.rb │ ├── httpauth │ │ ├── authenticator.rb │ │ ├── basicauth.rb │ │ ├── digestauth.rb │ │ ├── htdigest.rb │ │ ├── htgroup.rb │ │ ├── htpasswd.rb │ │ └── userdb.rb │ ├── httpproxy.rb │ ├── httprequest.rb │ ├── httpresponse.rb │ ├── https.rb │ ├── httpserver.rb │ ├── httpservlet.rb │ ├── httpservlet │ │ ├── abstract.rb │ │ ├── cgi_runner.rb │ │ ├── cgihandler.rb │ │ ├── erbhandler.rb │ │ ├── filehandler.rb │ │ └── prochandler.rb │ ├── httpstatus.rb │ ├── httputils.rb │ ├── httpversion.rb │ ├── log.rb │ ├── server.rb │ ├── ssl.rb │ ├── utils.rb │ └── version.rb ├── xmlrpc.rb ├── xmlrpc │ ├── base64.rb │ ├── client.rb │ ├── config.rb │ ├── create.rb │ ├── datetime.rb │ ├── httpserver.rb │ ├── marshal.rb │ ├── parser.rb │ ├── server.rb │ └── utils.rb ├── yaml.rb └── yaml │ ├── dbm.rb │ └── store.rb ├── load.c ├── loadpath.c ├── localeinit.c ├── main.c ├── man ├── erb.1 ├── goruby.1 ├── irb.1 ├── rake.1 ├── ri.1 └── ruby.1 ├── marshal.c ├── math.c ├── method.h ├── miniinit.c ├── misc ├── README ├── inf-ruby.el ├── rb_optparse.bash ├── rb_optparse.zsh ├── rdoc-mode.el ├── ruby-additional.el ├── ruby-electric.el ├── ruby-mode.el ├── ruby-style.el ├── rubydb2x.el └── rubydb3x.el ├── missing ├── acosh.c ├── alloca.c ├── cbrt.c ├── close.c ├── crt_externs.h ├── crypt.c ├── dup2.c ├── erf.c ├── ffs.c ├── file.h ├── fileblocks.c ├── finite.c ├── flock.c ├── hypot.c ├── isinf.c ├── isnan.c ├── langinfo.c ├── lgamma_r.c ├── memcmp.c ├── memmove.c ├── os2.c ├── setproctitle.c ├── signbit.c ├── strchr.c ├── strerror.c ├── strlcat.c ├── strlcpy.c ├── strstr.c ├── strtol.c ├── tgamma.c └── x86_64-chkstk.s ├── nacl ├── GNUmakefile.in ├── README.nacl ├── create_nmf.rb ├── dirent.h ├── example.html ├── ioctl.h ├── nacl-config.rb ├── package.rb ├── pepper_main.c ├── resource.h ├── select.h ├── signal.h ├── stat.h ├── unistd.h └── utime.h ├── node.c ├── node.h ├── numeric.c ├── object.c ├── pack.c ├── parse.y ├── prelude.rb ├── probes.d ├── probes_helper.h ├── proc.c ├── process.c ├── random.c ├── range.c ├── rational.c ├── re.c ├── regcomp.c ├── regenc.c ├── regenc.h ├── regerror.c ├── regexec.c ├── regint.h ├── regparse.c ├── regparse.h ├── regsyntax.c ├── ruby.c ├── ruby_atomic.h ├── safe.c ├── sample ├── README ├── biorhythm.rb ├── cal.rb ├── cbreak.rb ├── clnt.rb ├── coverage.rb ├── curses │ ├── hello.rb │ ├── mouse.rb │ ├── rain.rb │ ├── view.rb │ └── view2.rb ├── dir.rb ├── drb │ ├── README.ja.rdoc │ ├── README.rdoc │ ├── darray.rb │ ├── darrayc.rb │ ├── dbiff.rb │ ├── dcdbiff.rb │ ├── dchatc.rb │ ├── dchats.rb │ ├── dhasen.rb │ ├── dhasenc.rb │ ├── dlogc.rb │ ├── dlogd.rb │ ├── dqin.rb │ ├── dqlib.rb │ ├── dqout.rb │ ├── dqueue.rb │ ├── drbc.rb │ ├── drbch.rb │ ├── drbm.rb │ ├── drbmc.rb │ ├── drbs-acl.rb │ ├── drbs.rb │ ├── drbssl_c.rb │ ├── drbssl_s.rb │ ├── extserv_test.rb │ ├── gw_ct.rb │ ├── gw_cu.rb │ ├── gw_s.rb │ ├── holderc.rb │ ├── holders.rb │ ├── http0.rb │ ├── http0serv.rb │ ├── name.rb │ ├── namec.rb │ ├── old_tuplespace.rb │ ├── rinda_ts.rb │ ├── rindac.rb │ ├── rindas.rb │ ├── ring_echo.rb │ ├── ring_inspect.rb │ ├── ring_place.rb │ ├── simpletuple.rb │ ├── speedc.rb │ └── speeds.rb ├── dualstack-fetch.rb ├── dualstack-httpd.rb ├── eval.rb ├── export.rb ├── exyacc.rb ├── fact.rb ├── fib.awk ├── fib.pl ├── fib.py ├── fib.rb ├── fib.scm ├── freq.rb ├── from.rb ├── fullpath.rb ├── less.rb ├── list.rb ├── list2.rb ├── list3.rb ├── logger │ ├── app.rb │ ├── log.rb │ └── shifting.rb ├── mine.rb ├── mkproto.rb ├── mpart.rb ├── observ.rb ├── occur.pl ├── occur.rb ├── occur2.rb ├── openssl │ ├── c_rehash.rb │ ├── cert2text.rb │ ├── certstore.rb │ ├── cipher.rb │ ├── crlstore.rb │ ├── echo_cli.rb │ ├── echo_svr.rb │ ├── gen_csr.rb │ ├── smime_read.rb │ ├── smime_write.rb │ └── wget.rb ├── optparse │ ├── opttest.rb │ └── subcommand.rb ├── philos.rb ├── pi.rb ├── pty │ ├── expect_sample.rb │ ├── script.rb │ └── shl.rb ├── rcs.awk ├── rcs.dat ├── rcs.rb ├── rdoc │ └── markup │ │ ├── rdoc2latex.rb │ │ └── sample.rb ├── ripper │ ├── ruby2html.rb │ └── strip-comment.rb ├── rss │ ├── blend.rb │ ├── convert.rb │ ├── list_description.rb │ ├── re_read.rb │ └── rss_recent.rb ├── sieve.rb ├── svr.rb ├── test.rb ├── testunit │ ├── adder.rb │ ├── subtracter.rb │ ├── tc_adder.rb │ ├── tc_subtracter.rb │ └── ts_examples.rb ├── time.rb ├── timeout.rb ├── trojan.rb ├── tsvr.rb ├── uumerge.rb └── webrick │ ├── demo-app.rb │ ├── demo-multipart.cgi │ ├── demo-servlet.rb │ ├── demo-urlencoded.cgi │ ├── hello.cgi │ ├── hello.rb │ ├── httpd.rb │ ├── httpproxy.rb │ └── httpsd.rb ├── signal.c ├── siphash.c ├── siphash.h ├── sparc.c ├── spec ├── README └── default.mspec ├── sprintf.c ├── st.c ├── strftime.c ├── string.c ├── struct.c ├── symbian ├── README.SYMBIAN ├── configure.bat ├── missing-aeabi.c ├── missing-pips.c ├── pre-build └── setup ├── template ├── Doxyfile.tmpl ├── GNUmakefile.in ├── encdb.h.tmpl ├── fake.rb.in ├── id.c.tmpl ├── id.h.tmpl ├── insns.inc.tmpl ├── insns_info.inc.tmpl ├── known_errors.inc.tmpl ├── minsns.inc.tmpl ├── opt_sc.inc.tmpl ├── optinsn.inc.tmpl ├── optunifs.inc.tmpl ├── ruby.pc.in ├── sizes.c.tmpl ├── transdb.h.tmpl ├── verconf.h.in ├── vm.inc.tmpl ├── vmtc.inc.tmpl ├── yarvarch.en ├── yarvarch.ja └── yasmdata.rb.tmpl ├── test ├── -ext- │ ├── array │ │ └── test_resize.rb │ ├── bignum │ │ ├── test_big2str.rb │ │ ├── test_bigzero.rb │ │ ├── test_div.rb │ │ ├── test_mul.rb │ │ ├── test_pack.rb │ │ └── test_str2big.rb │ ├── bug_reporter │ │ └── test_bug_reporter.rb │ ├── class │ │ └── test_class2name.rb │ ├── debug │ │ ├── test_debug.rb │ │ └── test_profile_frames.rb │ ├── exception │ │ ├── test_enc_raise.rb │ │ └── test_ensured.rb │ ├── file │ │ └── test_stat.rb │ ├── funcall │ │ └── test_passing_block.rb │ ├── iter │ │ └── test_iter_break.rb │ ├── load │ │ └── test_dot_dot.rb │ ├── marshal │ │ └── test_usrmarshal.rb │ ├── method │ │ └── test_arity.rb │ ├── num2int │ │ └── test_num2int.rb │ ├── old_thread_select │ │ └── test_old_thread_select.rb │ ├── path_to_class │ │ └── test_path_to_class.rb │ ├── postponed_job │ │ └── test_postponed_job.rb │ ├── rational │ │ └── test_rat.rb │ ├── st │ │ ├── test_numhash.rb │ │ └── test_update.rb │ ├── string │ │ ├── test_cstr.rb │ │ ├── test_ellipsize.rb │ │ ├── test_enc_associate.rb │ │ ├── test_enc_str_buf_cat.rb │ │ ├── test_modify_expand.rb │ │ ├── test_normalize.rb │ │ ├── test_qsort.rb │ │ └── test_set_len.rb │ ├── symbol │ │ ├── test_inadvertent_creation.rb │ │ └── test_type.rb │ ├── test_bug-3571.rb │ ├── test_bug-3662.rb │ ├── test_bug-5832.rb │ ├── test_printf.rb │ ├── tracepoint │ │ └── test_tracepoint.rb │ ├── typeddata │ │ └── test_typeddata.rb │ ├── wait_for_single_fd │ │ └── test_wait_for_single_fd.rb │ └── win32 │ │ ├── test_dln.rb │ │ └── test_fd_setsize.rb ├── base64 │ └── test_base64.rb ├── benchmark │ └── test_benchmark.rb ├── bigdecimal │ ├── test_bigdecimal.rb │ ├── test_bigdecimal_util.rb │ ├── test_bigmath.rb │ └── testbase.rb ├── cgi │ ├── test_cgi_cookie.rb │ ├── test_cgi_core.rb │ ├── test_cgi_header.rb │ ├── test_cgi_modruby.rb │ ├── test_cgi_multipart.rb │ ├── test_cgi_session.rb │ ├── test_cgi_tag_helper.rb │ ├── test_cgi_util.rb │ └── testdata │ │ ├── file1.html │ │ ├── large.png │ │ └── small.png ├── coverage │ └── test_coverage.rb ├── csv │ ├── base.rb │ ├── line_endings.gz │ ├── test_csv_parsing.rb │ ├── test_csv_writing.rb │ ├── test_data_converters.rb │ ├── test_encodings.rb │ ├── test_features.rb │ ├── test_headers.rb │ ├── test_interface.rb │ ├── test_row.rb │ ├── test_table.rb │ └── ts_all.rb ├── date │ ├── test_date.rb │ ├── test_date_arith.rb │ ├── test_date_attr.rb │ ├── test_date_base.rb │ ├── test_date_compat.rb │ ├── test_date_conv.rb │ ├── test_date_marshal.rb │ ├── test_date_new.rb │ ├── test_date_parse.rb │ ├── test_date_strftime.rb │ ├── test_date_strptime.rb │ └── test_switch_hitter.rb ├── dbm │ └── test_dbm.rb ├── digest │ ├── test_digest.rb │ ├── test_digest_extend.rb │ └── test_digest_hmac.rb ├── dl │ ├── test_base.rb │ ├── test_c_struct_entry.rb │ ├── test_c_union_entity.rb │ ├── test_callback.rb │ ├── test_cfunc.rb │ ├── test_cparser.rb │ ├── test_cptr.rb │ ├── test_dl2.rb │ ├── test_func.rb │ ├── test_handle.rb │ ├── test_import.rb │ └── test_win32.rb ├── drb │ ├── drbtest.rb │ ├── ignore_test_drb.rb │ ├── test_acl.rb │ ├── test_drb.rb │ ├── test_drbssl.rb │ ├── test_drbunix.rb │ ├── ut_array.rb │ ├── ut_array_drbssl.rb │ ├── ut_array_drbunix.rb │ ├── ut_drb.rb │ ├── ut_drb_drbssl.rb │ ├── ut_drb_drbunix.rb │ ├── ut_eq.rb │ ├── ut_eval.rb │ ├── ut_large.rb │ ├── ut_port.rb │ ├── ut_safe1.rb │ └── ut_timerholder.rb ├── dtrace │ ├── dummy.rb │ ├── helper.rb │ ├── test_array_create.rb │ ├── test_cmethod.rb │ ├── test_function_entry.rb │ ├── test_gc.rb │ ├── test_hash_create.rb │ ├── test_load.rb │ ├── test_object_create_start.rb │ ├── test_raise.rb │ ├── test_require.rb │ ├── test_singleton_function.rb │ └── test_string.rb ├── erb │ ├── hello.erb │ ├── test_erb.rb │ └── test_erb_m17n.rb ├── etc │ └── test_etc.rb ├── fiddle │ ├── helper.rb │ ├── test_c_struct_entry.rb │ ├── test_c_union_entity.rb │ ├── test_closure.rb │ ├── test_cparser.rb │ ├── test_fiddle.rb │ ├── test_func.rb │ ├── test_function.rb │ ├── test_handle.rb │ ├── test_import.rb │ └── test_pointer.rb ├── fileutils │ ├── clobber.rb │ ├── fileasserts.rb │ ├── test_dryrun.rb │ ├── test_fileutils.rb │ ├── test_nowrite.rb │ ├── test_verbose.rb │ └── visibility_tests.rb ├── gdbm │ └── test_gdbm.rb ├── inlinetest.rb ├── io │ ├── console │ │ └── test_io_console.rb │ ├── nonblock │ │ └── test_flush.rb │ └── wait │ │ └── test_io_wait.rb ├── irb │ ├── test_completion.rb │ └── test_option.rb ├── json │ ├── fixtures │ │ ├── fail1.json │ │ ├── fail10.json │ │ ├── fail11.json │ │ ├── fail12.json │ │ ├── fail13.json │ │ ├── fail14.json │ │ ├── fail18.json │ │ ├── fail19.json │ │ ├── fail2.json │ │ ├── fail20.json │ │ ├── fail21.json │ │ ├── fail22.json │ │ ├── fail23.json │ │ ├── fail24.json │ │ ├── fail25.json │ │ ├── fail27.json │ │ ├── fail28.json │ │ ├── fail3.json │ │ ├── fail4.json │ │ ├── fail5.json │ │ ├── fail6.json │ │ ├── fail7.json │ │ ├── fail8.json │ │ ├── fail9.json │ │ ├── pass1.json │ │ ├── pass15.json │ │ ├── pass16.json │ │ ├── pass17.json │ │ ├── pass2.json │ │ ├── pass26.json │ │ └── pass3.json │ ├── setup_variant.rb │ ├── test_json.rb │ ├── test_json_addition.rb │ ├── test_json_encoding.rb │ ├── test_json_fixtures.rb │ ├── test_json_generate.rb │ ├── test_json_generic_object.rb │ ├── test_json_string_matching.rb │ └── test_json_unicode.rb ├── logger │ └── test_logger.rb ├── matrix │ ├── test_matrix.rb │ └── test_vector.rb ├── minitest │ ├── metametameta.rb │ ├── test_minitest_benchmark.rb │ ├── test_minitest_mock.rb │ ├── test_minitest_spec.rb │ └── test_minitest_unit.rb ├── misc │ └── test_ruby_mode.rb ├── mkmf │ ├── base.rb │ ├── test_config.rb │ ├── test_constant.rb │ ├── test_convertible.rb │ ├── test_find_executable.rb │ ├── test_flags.rb │ ├── test_framework.rb │ ├── test_have_func.rb │ ├── test_have_library.rb │ ├── test_have_macro.rb │ ├── test_libs.rb │ ├── test_signedness.rb │ └── test_sizeof.rb ├── monitor │ └── test_monitor.rb ├── net │ ├── ftp │ │ └── test_ftp.rb │ ├── http │ │ ├── test_buffered_io.rb │ │ ├── test_http.rb │ │ ├── test_http_request.rb │ │ ├── test_httpheader.rb │ │ ├── test_httpresponse.rb │ │ ├── test_httpresponses.rb │ │ ├── test_https.rb │ │ ├── test_https_proxy.rb │ │ └── utils.rb │ ├── imap │ │ ├── cacert.pem │ │ ├── server.crt │ │ ├── server.key │ │ ├── test_imap.rb │ │ └── test_imap_response_parser.rb │ ├── pop │ │ └── test_pop.rb │ ├── protocol │ │ └── test_protocol.rb │ └── smtp │ │ ├── test_response.rb │ │ ├── test_smtp.rb │ │ └── test_ssl_socket.rb ├── nkf │ ├── test_kconv.rb │ └── test_nkf.rb ├── objspace │ └── test_objspace.rb ├── open-uri │ ├── test_open-uri.rb │ └── test_ssl.rb ├── openssl │ ├── ssl_server.rb │ ├── test_asn1.rb │ ├── test_bn.rb │ ├── test_buffering.rb │ ├── test_cipher.rb │ ├── test_config.rb │ ├── test_digest.rb │ ├── test_engine.rb │ ├── test_fips.rb │ ├── test_hmac.rb │ ├── test_ns_spki.rb │ ├── test_ocsp.rb │ ├── test_pair.rb │ ├── test_pkcs12.rb │ ├── test_pkcs5.rb │ ├── test_pkcs7.rb │ ├── test_pkey_dh.rb │ ├── test_pkey_dsa.rb │ ├── test_pkey_ec.rb │ ├── test_pkey_rsa.rb │ ├── test_ssl.rb │ ├── test_ssl_session.rb │ ├── test_x509cert.rb │ ├── test_x509crl.rb │ ├── test_x509ext.rb │ ├── test_x509name.rb │ ├── test_x509req.rb │ ├── test_x509store.rb │ └── utils.rb ├── optparse │ ├── test_acceptable.rb │ ├── test_autoconf.rb │ ├── test_bash_completion.rb │ ├── test_getopts.rb │ ├── test_noarg.rb │ ├── test_optarg.rb │ ├── test_optparse.rb │ ├── test_placearg.rb │ ├── test_reqarg.rb │ ├── test_summary.rb │ └── test_zsh_completion.rb ├── ostruct │ └── test_ostruct.rb ├── pathname │ └── test_pathname.rb ├── profile_test_all.rb ├── psych │ ├── handlers │ │ └── test_recorder.rb │ ├── helper.rb │ ├── json │ │ └── test_stream.rb │ ├── nodes │ │ └── test_enumerable.rb │ ├── test_alias_and_anchor.rb │ ├── test_array.rb │ ├── test_boolean.rb │ ├── test_class.rb │ ├── test_coder.rb │ ├── test_date_time.rb │ ├── test_deprecated.rb │ ├── test_document.rb │ ├── test_emitter.rb │ ├── test_encoding.rb │ ├── test_engine_manager.rb │ ├── test_exception.rb │ ├── test_hash.rb │ ├── test_json_tree.rb │ ├── test_merge_keys.rb │ ├── test_nil.rb │ ├── test_null.rb │ ├── test_numeric.rb │ ├── test_object.rb │ ├── test_object_references.rb │ ├── test_omap.rb │ ├── test_parser.rb │ ├── test_psych.rb │ ├── test_safe_load.rb │ ├── test_scalar.rb │ ├── test_scalar_scanner.rb │ ├── test_serialize_subclasses.rb │ ├── test_set.rb │ ├── test_stream.rb │ ├── test_string.rb │ ├── test_struct.rb │ ├── test_symbol.rb │ ├── test_tainted.rb │ ├── test_to_yaml_properties.rb │ ├── test_tree_builder.rb │ ├── test_yaml.rb │ ├── test_yamldbm.rb │ ├── test_yamlstore.rb │ └── visitors │ │ ├── test_depth_first.rb │ │ ├── test_emitter.rb │ │ ├── test_to_ruby.rb │ │ └── test_yaml_tree.rb ├── rake │ ├── file_creation.rb │ ├── helper.rb │ ├── support │ │ ├── rakefile_definitions.rb │ │ └── ruby_runner.rb │ ├── test_private_reader.rb │ ├── test_rake.rb │ ├── test_rake_application.rb │ ├── test_rake_application_options.rb │ ├── test_rake_backtrace.rb │ ├── test_rake_clean.rb │ ├── test_rake_definitions.rb │ ├── test_rake_directory_task.rb │ ├── test_rake_dsl.rb │ ├── test_rake_early_time.rb │ ├── test_rake_extension.rb │ ├── test_rake_file_creation_task.rb │ ├── test_rake_file_list.rb │ ├── test_rake_file_list_path_map.rb │ ├── test_rake_file_task.rb │ ├── test_rake_file_utils.rb │ ├── test_rake_ftp_file.rb │ ├── test_rake_functional.rb │ ├── test_rake_invocation_chain.rb │ ├── test_rake_linked_list.rb │ ├── test_rake_makefile_loader.rb │ ├── test_rake_multi_task.rb │ ├── test_rake_name_space.rb │ ├── test_rake_package_task.rb │ ├── test_rake_path_map.rb │ ├── test_rake_path_map_explode.rb │ ├── test_rake_path_map_partial.rb │ ├── test_rake_pseudo_status.rb │ ├── test_rake_rake_test_loader.rb │ ├── test_rake_reduce_compat.rb │ ├── test_rake_require.rb │ ├── test_rake_rules.rb │ ├── test_rake_scope.rb │ ├── test_rake_task.rb │ ├── test_rake_task_argument_parsing.rb │ ├── test_rake_task_arguments.rb │ ├── test_rake_task_lib.rb │ ├── test_rake_task_manager.rb │ ├── test_rake_task_manager_argument_resolution.rb │ ├── test_rake_task_with_arguments.rb │ ├── test_rake_test_task.rb │ ├── test_rake_thread_pool.rb │ ├── test_rake_top_level_functions.rb │ ├── test_rake_win32.rb │ ├── test_thread_history_display.rb │ └── test_trace_output.rb ├── rdoc │ ├── MarkdownTest_1.0.3 │ │ ├── Amps and angle encoding.text │ │ ├── Auto links.text │ │ ├── Backslash escapes.text │ │ ├── Blockquotes with code blocks.text │ │ ├── Code Blocks.text │ │ ├── Code Spans.text │ │ ├── Hard-wrapped paragraphs with list-like lines.text │ │ ├── Horizontal rules.text │ │ ├── Inline HTML (Advanced).text │ │ ├── Inline HTML (Simple).text │ │ ├── Inline HTML comments.text │ │ ├── Links, inline style.text │ │ ├── Links, reference style.text │ │ ├── Links, shortcut references.text │ │ ├── Literal quotes in titles.text │ │ ├── Markdown Documentation - Basics.text │ │ ├── Markdown Documentation - Syntax.text │ │ ├── Nested blockquotes.text │ │ ├── Ordered and unordered lists.text │ │ ├── Strong and em together.text │ │ ├── Tabs.text │ │ └── Tidyness.text │ ├── README │ ├── binary.dat │ ├── hidden.zip.txt │ ├── test.ja.large.rdoc │ ├── test.ja.largedoc │ ├── test.ja.rdoc │ ├── test.ja.txt │ ├── test.txt │ ├── test_attribute_manager.rb │ ├── test_rdoc_alias.rb │ ├── test_rdoc_any_method.rb │ ├── test_rdoc_attr.rb │ ├── test_rdoc_class_module.rb │ ├── test_rdoc_code_object.rb │ ├── test_rdoc_comment.rb │ ├── test_rdoc_constant.rb │ ├── test_rdoc_context.rb │ ├── test_rdoc_context_section.rb │ ├── test_rdoc_cross_reference.rb │ ├── test_rdoc_encoding.rb │ ├── test_rdoc_extend.rb │ ├── test_rdoc_generator_darkfish.rb │ ├── test_rdoc_generator_json_index.rb │ ├── test_rdoc_generator_markup.rb │ ├── test_rdoc_generator_ri.rb │ ├── test_rdoc_include.rb │ ├── test_rdoc_markdown.rb │ ├── test_rdoc_markdown_test.rb │ ├── test_rdoc_markup.rb │ ├── test_rdoc_markup_attribute_manager.rb │ ├── test_rdoc_markup_attributes.rb │ ├── test_rdoc_markup_document.rb │ ├── test_rdoc_markup_formatter.rb │ ├── test_rdoc_markup_hard_break.rb │ ├── test_rdoc_markup_heading.rb │ ├── test_rdoc_markup_include.rb │ ├── test_rdoc_markup_indented_paragraph.rb │ ├── test_rdoc_markup_paragraph.rb │ ├── test_rdoc_markup_parser.rb │ ├── test_rdoc_markup_pre_process.rb │ ├── test_rdoc_markup_raw.rb │ ├── test_rdoc_markup_to_ansi.rb │ ├── test_rdoc_markup_to_bs.rb │ ├── test_rdoc_markup_to_html.rb │ ├── test_rdoc_markup_to_html_crossref.rb │ ├── test_rdoc_markup_to_html_snippet.rb │ ├── test_rdoc_markup_to_joined_paragraph.rb │ ├── test_rdoc_markup_to_label.rb │ ├── test_rdoc_markup_to_markdown.rb │ ├── test_rdoc_markup_to_rdoc.rb │ ├── test_rdoc_markup_to_table_of_contents.rb │ ├── test_rdoc_markup_to_tt_only.rb │ ├── test_rdoc_markup_verbatim.rb │ ├── test_rdoc_method_attr.rb │ ├── test_rdoc_normal_class.rb │ ├── test_rdoc_normal_module.rb │ ├── test_rdoc_options.rb │ ├── test_rdoc_parser.rb │ ├── test_rdoc_parser_c.rb │ ├── test_rdoc_parser_changelog.rb │ ├── test_rdoc_parser_markdown.rb │ ├── test_rdoc_parser_rd.rb │ ├── test_rdoc_parser_ruby.rb │ ├── test_rdoc_parser_simple.rb │ ├── test_rdoc_rd.rb │ ├── test_rdoc_rd_block_parser.rb │ ├── test_rdoc_rd_inline.rb │ ├── test_rdoc_rd_inline_parser.rb │ ├── test_rdoc_rdoc.rb │ ├── test_rdoc_require.rb │ ├── test_rdoc_ri_driver.rb │ ├── test_rdoc_ri_paths.rb │ ├── test_rdoc_ruby_lex.rb │ ├── test_rdoc_ruby_token.rb │ ├── test_rdoc_rubygems_hook.rb │ ├── test_rdoc_servlet.rb │ ├── test_rdoc_single_class.rb │ ├── test_rdoc_stats.rb │ ├── test_rdoc_store.rb │ ├── test_rdoc_task.rb │ ├── test_rdoc_text.rb │ ├── test_rdoc_token_stream.rb │ ├── test_rdoc_tom_doc.rb │ ├── test_rdoc_top_level.rb │ ├── xref_data.rb │ └── xref_test_case.rb ├── readline │ ├── test_readline.rb │ └── test_readline_history.rb ├── resolv │ ├── test_addr.rb │ └── test_dns.rb ├── rexml │ ├── data │ │ ├── LostineRiver.kml.gz │ │ ├── ProductionSupport.xml │ │ ├── axis.xml │ │ ├── bad.xml │ │ ├── basic.xml │ │ ├── basicupdate.xml │ │ ├── broken.rss │ │ ├── contents.xml │ │ ├── dash.xml │ │ ├── defaultNamespace.xml │ │ ├── doctype_test.xml │ │ ├── documentation.xml │ │ ├── euc.xml │ │ ├── evaluate.xml │ │ ├── fibo.xml │ │ ├── foo.xml │ │ ├── google.2.xml │ │ ├── id.xml │ │ ├── iso8859-1.xml │ │ ├── jaxen24.xml │ │ ├── jaxen3.xml │ │ ├── lang.xml │ │ ├── lang0.xml │ │ ├── message.xml │ │ ├── moreover.xml │ │ ├── much_ado.xml │ │ ├── namespaces.xml │ │ ├── nitf.xml │ │ ├── numbers.xml │ │ ├── ofbiz-issues-full-177.xml │ │ ├── pi.xml │ │ ├── pi2.xml │ │ ├── project.xml │ │ ├── simple.xml │ │ ├── stream_accents.xml │ │ ├── t63-1.xml │ │ ├── t63-2.svg │ │ ├── t75.xml │ │ ├── test │ │ │ ├── tests.xml │ │ │ └── tests.xsl │ │ ├── testNamespaces.xml │ │ ├── testsrc.xml │ │ ├── text.xml │ │ ├── ticket_110_utf16.xml │ │ ├── ticket_61.xml │ │ ├── ticket_68.xml │ │ ├── tutorial.xml │ │ ├── underscore.xml │ │ ├── web.xml │ │ ├── web2.xml │ │ ├── working.rss │ │ ├── xmlfile-bug.xml │ │ ├── xp.tst │ │ └── yahoo.xml │ ├── listener.rb │ ├── parse │ │ ├── test_document_type_declaration.rb │ │ └── test_notation_declaration.rb │ ├── parser │ │ ├── test_sax2.rb │ │ └── test_tree.rb │ ├── rexml_test_utils.rb │ ├── test_attributes.rb │ ├── test_attributes_mixin.rb │ ├── test_changing_encoding.rb │ ├── test_comment.rb │ ├── test_contrib.rb │ ├── test_core.rb │ ├── test_doctype.rb │ ├── test_document.rb │ ├── test_elements.rb │ ├── test_encoding.rb │ ├── test_encoding_2.rb │ ├── test_entity.rb │ ├── test_functions.rb │ ├── test_functions_number.rb │ ├── test_jaxen.rb │ ├── test_light.rb │ ├── test_lightparser.rb │ ├── test_listener.rb │ ├── test_martin_fowler.rb │ ├── test_namespace.rb │ ├── test_order.rb │ ├── test_preceding_sibling.rb │ ├── test_pullparser.rb │ ├── test_rexml_issuezilla.rb │ ├── test_sax.rb │ ├── test_stream.rb │ ├── test_text.rb │ ├── test_ticket_80.rb │ ├── test_validation_rng.rb │ ├── test_xml_declaration.rb │ ├── test_xpath.rb │ ├── test_xpath_attribute_query.rb │ ├── test_xpath_msw.rb │ ├── test_xpath_pred.rb │ └── test_xpathtext.rb ├── rinda │ ├── test_rinda.rb │ └── test_tuplebag.rb ├── ripper │ ├── dummyparser.rb │ ├── test_files.rb │ ├── test_filter.rb │ ├── test_parser_events.rb │ ├── test_ripper.rb │ └── test_scanner_events.rb ├── rss │ ├── dot.png │ ├── rss-assertions.rb │ ├── rss-testcase.rb │ ├── test_1.0.rb │ ├── test_2.0.rb │ ├── test_accessor.rb │ ├── test_atom.rb │ ├── test_content.rb │ ├── test_dublincore.rb │ ├── test_image.rb │ ├── test_inherit.rb │ ├── test_itunes.rb │ ├── test_maker_0.9.rb │ ├── test_maker_1.0.rb │ ├── test_maker_2.0.rb │ ├── test_maker_atom_entry.rb │ ├── test_maker_atom_feed.rb │ ├── test_maker_content.rb │ ├── test_maker_dc.rb │ ├── test_maker_image.rb │ ├── test_maker_itunes.rb │ ├── test_maker_slash.rb │ ├── test_maker_sy.rb │ ├── test_maker_taxo.rb │ ├── test_maker_trackback.rb │ ├── test_maker_xml-stylesheet.rb │ ├── test_parser.rb │ ├── test_parser_1.0.rb │ ├── test_parser_2.0.rb │ ├── test_parser_atom_entry.rb │ ├── test_parser_atom_feed.rb │ ├── test_setup_maker_0.9.rb │ ├── test_setup_maker_1.0.rb │ ├── test_setup_maker_2.0.rb │ ├── test_setup_maker_atom_entry.rb │ ├── test_setup_maker_atom_feed.rb │ ├── test_setup_maker_itunes.rb │ ├── test_setup_maker_slash.rb │ ├── test_slash.rb │ ├── test_syndication.rb │ ├── test_taxonomy.rb │ ├── test_to_s.rb │ ├── test_trackback.rb │ ├── test_version.rb │ └── test_xml-stylesheet.rb ├── ruby │ ├── allpairs.rb │ ├── beginmainend.rb │ ├── enc │ │ ├── test_big5.rb │ │ ├── test_cp949.rb │ │ ├── test_emoji.rb │ │ ├── test_euc_jp.rb │ │ ├── test_euc_kr.rb │ │ ├── test_euc_tw.rb │ │ ├── test_gb18030.rb │ │ ├── test_gbk.rb │ │ ├── test_iso_8859.rb │ │ ├── test_koi8.rb │ │ ├── test_shift_jis.rb │ │ ├── test_utf16.rb │ │ ├── test_utf32.rb │ │ └── test_windows_1251.rb │ ├── endblockwarn_rb │ ├── envutil.rb │ ├── lbtest.rb │ ├── marshaltestlib.rb │ ├── memory_status.rb │ ├── sentence.rb │ ├── test_alias.rb │ ├── test_argf.rb │ ├── test_arity.rb │ ├── test_array.rb │ ├── test_assignment.rb │ ├── test_autoload.rb │ ├── test_backtrace.rb │ ├── test_basicinstructions.rb │ ├── test_beginendblock.rb │ ├── test_bignum.rb │ ├── test_call.rb │ ├── test_case.rb │ ├── test_class.rb │ ├── test_clone.rb │ ├── test_comparable.rb │ ├── test_complex.rb │ ├── test_complex2.rb │ ├── test_complexrational.rb │ ├── test_condition.rb │ ├── test_const.rb │ ├── test_continuation.rb │ ├── test_defined.rb │ ├── test_dir.rb │ ├── test_dir_m17n.rb │ ├── test_econv.rb │ ├── test_encoding.rb │ ├── test_enum.rb │ ├── test_enumerator.rb │ ├── test_env.rb │ ├── test_eval.rb │ ├── test_exception.rb │ ├── test_fiber.rb │ ├── test_file.rb │ ├── test_file_exhaustive.rb │ ├── test_fixnum.rb │ ├── test_flip.rb │ ├── test_float.rb │ ├── test_fnmatch.rb │ ├── test_gc.rb │ ├── test_hash.rb │ ├── test_ifunless.rb │ ├── test_integer.rb │ ├── test_integer_comb.rb │ ├── test_io.rb │ ├── test_io_m17n.rb │ ├── test_iseq.rb │ ├── test_iterator.rb │ ├── test_keyword.rb │ ├── test_lambda.rb │ ├── test_lazy_enumerator.rb │ ├── test_literal.rb │ ├── test_m17n.rb │ ├── test_m17n_comb.rb │ ├── test_marshal.rb │ ├── test_math.rb │ ├── test_metaclass.rb │ ├── test_method.rb │ ├── test_mixed_unicode_escapes.rb │ ├── test_module.rb │ ├── test_not.rb │ ├── test_notimp.rb │ ├── test_numeric.rb │ ├── test_object.rb │ ├── test_objectspace.rb │ ├── test_optimization.rb │ ├── test_pack.rb │ ├── test_parse.rb │ ├── test_path.rb │ ├── test_pipe.rb │ ├── test_primitive.rb │ ├── test_proc.rb │ ├── test_process.rb │ ├── test_rand.rb │ ├── test_range.rb │ ├── test_rational.rb │ ├── test_rational2.rb │ ├── test_readpartial.rb │ ├── test_refinement.rb │ ├── test_regexp.rb │ ├── test_require.rb │ ├── test_rubyoptions.rb │ ├── test_settracefunc.rb │ ├── test_signal.rb │ ├── test_sleep.rb │ ├── test_sprintf.rb │ ├── test_sprintf_comb.rb │ ├── test_string.rb │ ├── test_stringchar.rb │ ├── test_struct.rb │ ├── test_super.rb │ ├── test_symbol.rb │ ├── test_syntax.rb │ ├── test_system.rb │ ├── test_thread.rb │ ├── test_threadgroup.rb │ ├── test_time.rb │ ├── test_time_tz.rb │ ├── test_trace.rb │ ├── test_transcode.rb │ ├── test_undef.rb │ ├── test_unicode_escape.rb │ ├── test_variable.rb │ ├── test_whileuntil.rb │ ├── test_yield.rb │ └── ut_eof.rb ├── rubygems │ ├── alternate_cert.pem │ ├── alternate_cert_32.pem │ ├── alternate_key.pem │ ├── bad_rake.rb │ ├── bogussources.rb │ ├── ca_cert.pem │ ├── child_cert.pem │ ├── child_cert_32.pem │ ├── child_key.pem │ ├── client.pem │ ├── data │ │ ├── gem-private_key.pem │ │ ├── gem-public_cert.pem │ │ └── null-type.gemspec.rz │ ├── encrypted_private_key.pem │ ├── expired_cert.pem │ ├── fake_certlib │ │ └── openssl.rb │ ├── fix_openssl_warnings.rb │ ├── foo │ │ └── discover.rb │ ├── future_cert.pem │ ├── future_cert_32.pem │ ├── good_rake.rb │ ├── grandchild_cert.pem │ ├── grandchild_cert_32.pem │ ├── grandchild_key.pem │ ├── insure_session.rb │ ├── invalid_client.pem │ ├── invalid_issuer_cert.pem │ ├── invalid_issuer_cert_32.pem │ ├── invalid_key.pem │ ├── invalid_signer_cert.pem │ ├── invalid_signer_cert_32.pem │ ├── invalidchild_cert.pem │ ├── invalidchild_cert_32.pem │ ├── invalidchild_key.pem │ ├── plugin │ │ ├── exception │ │ │ └── rubygems_plugin.rb │ │ ├── load │ │ │ └── rubygems_plugin.rb │ │ └── standarderror │ │ │ └── rubygems_plugin.rb │ ├── private_key.pem │ ├── public_cert.pem │ ├── public_cert_32.pem │ ├── public_key.pem │ ├── rubygems │ │ └── commands │ │ │ └── crash_command.rb │ ├── rubygems_plugin.rb │ ├── sff │ │ └── discover.rb │ ├── simple_gem.rb │ ├── specifications │ │ ├── bar-0.0.2.gemspec │ │ └── foo-0.0.1.gemspec │ ├── ssl_cert.pem │ ├── ssl_key.pem │ ├── test_bundled_ca.rb │ ├── test_config.rb │ ├── test_deprecate.rb │ ├── test_gem.rb │ ├── test_gem_available_set.rb │ ├── test_gem_command.rb │ ├── test_gem_command_manager.rb │ ├── test_gem_commands_build_command.rb │ ├── test_gem_commands_cert_command.rb │ ├── test_gem_commands_check_command.rb │ ├── test_gem_commands_cleanup_command.rb │ ├── test_gem_commands_contents_command.rb │ ├── test_gem_commands_dependency_command.rb │ ├── test_gem_commands_environment_command.rb │ ├── test_gem_commands_fetch_command.rb │ ├── test_gem_commands_generate_index_command.rb │ ├── test_gem_commands_help_command.rb │ ├── test_gem_commands_install_command.rb │ ├── test_gem_commands_list_command.rb │ ├── test_gem_commands_lock_command.rb │ ├── test_gem_commands_mirror.rb │ ├── test_gem_commands_outdated_command.rb │ ├── test_gem_commands_owner_command.rb │ ├── test_gem_commands_pristine_command.rb │ ├── test_gem_commands_push_command.rb │ ├── test_gem_commands_query_command.rb │ ├── test_gem_commands_search_command.rb │ ├── test_gem_commands_server_command.rb │ ├── test_gem_commands_setup_command.rb │ ├── test_gem_commands_sources_command.rb │ ├── test_gem_commands_specification_command.rb │ ├── test_gem_commands_stale_command.rb │ ├── test_gem_commands_uninstall_command.rb │ ├── test_gem_commands_unpack_command.rb │ ├── test_gem_commands_update_command.rb │ ├── test_gem_commands_which_command.rb │ ├── test_gem_commands_yank_command.rb │ ├── test_gem_config_file.rb │ ├── test_gem_dependency.rb │ ├── test_gem_dependency_installer.rb │ ├── test_gem_dependency_list.rb │ ├── test_gem_dependency_resolver.rb │ ├── test_gem_dependency_resolver_api_set.rb │ ├── test_gem_dependency_resolver_api_specification.rb │ ├── test_gem_dependency_resolver_dependency_conflict.rb │ ├── test_gem_dependency_resolver_index_set.rb │ ├── test_gem_dependency_resolver_index_specification.rb │ ├── test_gem_dependency_resolver_installed_specification.rb │ ├── test_gem_dependency_resolver_installer_set.rb │ ├── test_gem_dependency_resolver_vendor_set.rb │ ├── test_gem_dependency_resolver_vendor_specification.rb │ ├── test_gem_doctor.rb │ ├── test_gem_ext_builder.rb │ ├── test_gem_ext_cmake_builder.rb │ ├── test_gem_ext_configure_builder.rb │ ├── test_gem_ext_ext_conf_builder.rb │ ├── test_gem_ext_rake_builder.rb │ ├── test_gem_gem_runner.rb │ ├── test_gem_gemcutter_utilities.rb │ ├── test_gem_impossible_dependencies_error.rb │ ├── test_gem_indexer.rb │ ├── test_gem_install_update_options.rb │ ├── test_gem_installer.rb │ ├── test_gem_local_remote_options.rb │ ├── test_gem_name_tuple.rb │ ├── test_gem_package.rb │ ├── test_gem_package_old.rb │ ├── test_gem_package_tar_header.rb │ ├── test_gem_package_tar_reader.rb │ ├── test_gem_package_tar_reader_entry.rb │ ├── test_gem_package_tar_writer.rb │ ├── test_gem_package_task.rb │ ├── test_gem_path_support.rb │ ├── test_gem_platform.rb │ ├── test_gem_rdoc.rb │ ├── test_gem_remote_fetcher.rb │ ├── test_gem_request.rb │ ├── test_gem_request_set.rb │ ├── test_gem_request_set_gem_dependency_api.rb │ ├── test_gem_requirement.rb │ ├── test_gem_security.rb │ ├── test_gem_security_policy.rb │ ├── test_gem_security_signer.rb │ ├── test_gem_security_trust_dir.rb │ ├── test_gem_server.rb │ ├── test_gem_silent_ui.rb │ ├── test_gem_source.rb │ ├── test_gem_source_fetch_problem.rb │ ├── test_gem_source_installed.rb │ ├── test_gem_source_list.rb │ ├── test_gem_source_local.rb │ ├── test_gem_source_specific_file.rb │ ├── test_gem_spec_fetcher.rb │ ├── test_gem_specification.rb │ ├── test_gem_stream_ui.rb │ ├── test_gem_stub_specification.rb │ ├── test_gem_text.rb │ ├── test_gem_uninstaller.rb │ ├── test_gem_uri_formatter.rb │ ├── test_gem_validator.rb │ ├── test_gem_version.rb │ ├── test_gem_version_option.rb │ ├── test_kernel.rb │ ├── test_require.rb │ ├── wrong_key_cert.pem │ └── wrong_key_cert_32.pem ├── runner.rb ├── scanf │ ├── data.txt │ ├── test_scanf.rb │ ├── test_scanfblocks.rb │ └── test_scanfio.rb ├── sdbm │ └── test_sdbm.rb ├── shell │ └── test_command_processor.rb ├── socket │ ├── test_addrinfo.rb │ ├── test_ancdata.rb │ ├── test_basicsocket.rb │ ├── test_nonblock.rb │ ├── test_socket.rb │ ├── test_sockopt.rb │ ├── test_tcp.rb │ ├── test_udp.rb │ └── test_unix.rb ├── stringio │ └── test_stringio.rb ├── strscan │ └── test_stringscanner.rb ├── syslog │ └── test_syslog_logger.rb ├── test_abbrev.rb ├── test_cmath.rb ├── test_curses.rb ├── test_delegate.rb ├── test_find.rb ├── test_ipaddr.rb ├── test_mathn.rb ├── test_mutex_m.rb ├── test_open3.rb ├── test_pp.rb ├── test_prettyprint.rb ├── test_prime.rb ├── test_pstore.rb ├── test_pty.rb ├── test_rbconfig.rb ├── test_securerandom.rb ├── test_set.rb ├── test_shellwords.rb ├── test_singleton.rb ├── test_syslog.rb ├── test_tempfile.rb ├── test_time.rb ├── test_timeout.rb ├── test_tmpdir.rb ├── test_tracer.rb ├── test_tsort.rb ├── test_weakref.rb ├── testunit │ ├── test4test_hideskip.rb │ ├── test4test_redefinition.rb │ ├── test4test_sorting.rb │ ├── test_assertion.rb │ ├── test_hideskip.rb │ ├── test_parallel.rb │ ├── test_rake_integration.rb │ ├── test_redefinition.rb │ ├── test_sorting.rb │ └── tests_for_parallel │ │ ├── ptest_first.rb │ │ ├── ptest_forth.rb │ │ ├── ptest_second.rb │ │ ├── ptest_third.rb │ │ └── runner.rb ├── thread │ ├── test_cv.rb │ ├── test_queue.rb │ └── test_sync.rb ├── uri │ ├── test_common.rb │ ├── test_ftp.rb │ ├── test_generic.rb │ ├── test_http.rb │ ├── test_ldap.rb │ ├── test_mailto.rb │ └── test_parser.rb ├── webrick │ ├── .htaccess │ ├── test_cgi.rb │ ├── test_cookie.rb │ ├── test_filehandler.rb │ ├── test_htmlutils.rb │ ├── test_httpauth.rb │ ├── test_httpproxy.rb │ ├── test_httprequest.rb │ ├── test_httpresponse.rb │ ├── test_httpserver.rb │ ├── test_httputils.rb │ ├── test_httpversion.rb │ ├── test_server.rb │ ├── test_utils.rb │ ├── utils.rb │ ├── webrick.cgi │ └── webrick_long_filename.cgi ├── win32ole │ ├── err_in_callback.rb │ ├── orig_data.csv │ ├── test_err_in_callback.rb │ ├── test_folderitem2_invokeverb.rb │ ├── test_nil2vtempty.rb │ ├── test_ole_methods.rb │ ├── test_propertyputref.rb │ ├── test_thread.rb │ ├── test_win32ole.rb │ ├── test_win32ole_event.rb │ ├── test_win32ole_method.rb │ ├── test_win32ole_param.rb │ ├── test_win32ole_type.rb │ ├── test_win32ole_typelib.rb │ ├── test_win32ole_variable.rb │ ├── test_win32ole_variant.rb │ ├── test_win32ole_variant_m.rb │ ├── test_win32ole_variant_outarg.rb │ └── test_word.rb ├── with_different_ofs.rb ├── xmlrpc │ ├── data │ │ ├── blog.xml │ │ ├── bug_bool.expected │ │ ├── bug_bool.xml │ │ ├── bug_cdata.expected │ │ ├── bug_cdata.xml │ │ ├── bug_covert.expected │ │ ├── bug_covert.xml │ │ ├── datetime_iso8601.xml │ │ ├── fault.xml │ │ ├── value.expected │ │ ├── value.xml │ │ ├── xml1.expected │ │ └── xml1.xml │ ├── htpasswd │ ├── test_client.rb │ ├── test_cookie.rb │ ├── test_datetime.rb │ ├── test_features.rb │ ├── test_marshal.rb │ ├── test_parser.rb │ ├── test_webrick_server.rb │ └── webrick_testing.rb └── zlib │ └── test_zlib.rb ├── thread.c ├── thread_native.h ├── thread_pthread.c ├── thread_pthread.h ├── thread_win32.c ├── thread_win32.h ├── time.c ├── timev.h ├── tool ├── asm_parse.rb ├── bisect.sh ├── build-transcode ├── change_maker.rb ├── compile_prelude.rb ├── config_files.rb ├── enc-emoji-citrus-gen.rb ├── enc-emoji4unicode.rb ├── enc-unicode.rb ├── eval.rb ├── file2lastrev.rb ├── gen_dummy_probes.rb ├── gen_ruby_tapset.rb ├── generic_erb.rb ├── get-config_files ├── id2token.rb ├── ifchange ├── insns2vm.rb ├── install-sh ├── instruction.rb ├── jisx0208.rb ├── make-snapshot ├── mdoc2man.rb ├── merger.rb ├── mkconfig.rb ├── mkrunnable.rb ├── node_name.rb ├── parse.rb ├── probes_to_wiki.rb ├── rbinstall.rb ├── rbuninstall.rb ├── rmdirs ├── rubytest.rb ├── runruby.rb ├── strip-rdoc.rb ├── test │ └── test_jisx0208.rb ├── transcode-tblgen.rb ├── update-deps ├── vpath.rb ├── vtlh.rb └── ytab.sed ├── transcode.c ├── transcode_data.h ├── util.c ├── variable.c ├── version.c ├── version.h ├── vm.c ├── vm_backtrace.c ├── vm_core.h ├── vm_debug.h ├── vm_dump.c ├── vm_eval.c ├── vm_exec.c ├── vm_exec.h ├── vm_insnhelper.c ├── vm_insnhelper.h ├── vm_method.c ├── vm_opts.h ├── vm_trace.c ├── vsnprintf.c └── win32 ├── Makefile.sub ├── README.win32 ├── configure.bat ├── dir.h ├── enc-setup.mak ├── file.c ├── ifchange.bat ├── makedirs.bat ├── mkexports.rb ├── resource.rb ├── rm.bat ├── rmall.bat ├── rmdirs.bat ├── rtname.cmd ├── setup.mak ├── stub.c ├── win32.c └── winmain.c /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/.document -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/.gdbinit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/.indent.pro -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/.travis.yml -------------------------------------------------------------------------------- /BSDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/BSDL -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/COPYING.ja -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ChangeLog -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/GPL -------------------------------------------------------------------------------- /KNOWNBUGS.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/KNOWNBUGS.rb -------------------------------------------------------------------------------- /LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/LEGAL -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/README -------------------------------------------------------------------------------- /README.EXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/README.EXT -------------------------------------------------------------------------------- /README.EXT.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/README.EXT.ja -------------------------------------------------------------------------------- /README.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/README.ja -------------------------------------------------------------------------------- /addr2line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/addr2line.c -------------------------------------------------------------------------------- /addr2line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/addr2line.h -------------------------------------------------------------------------------- /array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/array.c -------------------------------------------------------------------------------- /benchmark/bm_vm3_gc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/bm_vm3_gc.rb -------------------------------------------------------------------------------- /benchmark/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/driver.rb -------------------------------------------------------------------------------- /benchmark/gc/aobench.rb: -------------------------------------------------------------------------------- 1 | require_relative '../bm_app_aobench.rb' 2 | -------------------------------------------------------------------------------- /benchmark/gc/binary_trees.rb: -------------------------------------------------------------------------------- 1 | require_relative '../bm_so_binary_trees.rb' 2 | -------------------------------------------------------------------------------- /benchmark/gc/hash1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/gc/hash1.rb -------------------------------------------------------------------------------- /benchmark/gc/hash2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/gc/hash2.rb -------------------------------------------------------------------------------- /benchmark/gc/null.rb: -------------------------------------------------------------------------------- 1 | # null 2 | -------------------------------------------------------------------------------- /benchmark/gc/pentomino.rb: -------------------------------------------------------------------------------- 1 | require_relative '../bm_app_pentomino.rb' 2 | -------------------------------------------------------------------------------- /benchmark/gc/rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/gc/rdoc.rb -------------------------------------------------------------------------------- /benchmark/gc/ring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/gc/ring.rb -------------------------------------------------------------------------------- /benchmark/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/report.rb -------------------------------------------------------------------------------- /benchmark/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/run.rb -------------------------------------------------------------------------------- /benchmark/runc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/benchmark/runc.rb -------------------------------------------------------------------------------- /bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/bignum.c -------------------------------------------------------------------------------- /bin/erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/bin/erb -------------------------------------------------------------------------------- /bin/gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/bin/gem -------------------------------------------------------------------------------- /bin/irb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/bin/irb -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/bin/rdoc -------------------------------------------------------------------------------- /bin/ri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/bin/ri -------------------------------------------------------------------------------- /bin/testrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/bin/testrb -------------------------------------------------------------------------------- /class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/class.c -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/common.mk -------------------------------------------------------------------------------- /compar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/compar.c -------------------------------------------------------------------------------- /compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/compile.c -------------------------------------------------------------------------------- /complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/complex.c -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/configure.in -------------------------------------------------------------------------------- /constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/constant.h -------------------------------------------------------------------------------- /cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/cont.c -------------------------------------------------------------------------------- /cygwin/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/cygwin/GNUmakefile.in -------------------------------------------------------------------------------- /debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/debug.c -------------------------------------------------------------------------------- /defs/default_gems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/defs/default_gems -------------------------------------------------------------------------------- /defs/gmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/defs/gmake.mk -------------------------------------------------------------------------------- /defs/id.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/defs/id.def -------------------------------------------------------------------------------- /defs/keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/defs/keywords -------------------------------------------------------------------------------- /defs/known_errors.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/defs/known_errors.def -------------------------------------------------------------------------------- /defs/lex.c.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/defs/lex.c.src -------------------------------------------------------------------------------- /defs/opt_insn_unif.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/defs/opt_insn_unif.def -------------------------------------------------------------------------------- /defs/opt_operand.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/defs/opt_operand.def -------------------------------------------------------------------------------- /dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/dir.c -------------------------------------------------------------------------------- /dln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/dln.c -------------------------------------------------------------------------------- /dln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/dln.h -------------------------------------------------------------------------------- /dln_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/dln_find.c -------------------------------------------------------------------------------- /dmydln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/dmydln.c -------------------------------------------------------------------------------- /dmyext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/dmyext.c -------------------------------------------------------------------------------- /doc/.document: -------------------------------------------------------------------------------- 1 | *.rdoc 2 | ChangeLog* 3 | NEWS-* 4 | syntax 5 | -------------------------------------------------------------------------------- /doc/ChangeLog-1.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/ChangeLog-1.8.0 -------------------------------------------------------------------------------- /doc/ChangeLog-1.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/ChangeLog-1.9.3 -------------------------------------------------------------------------------- /doc/ChangeLog-2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/ChangeLog-2.0.0 -------------------------------------------------------------------------------- /doc/ChangeLog-YARV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/ChangeLog-YARV -------------------------------------------------------------------------------- /doc/NEWS-1.8.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/NEWS-1.8.7 -------------------------------------------------------------------------------- /doc/NEWS-1.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/NEWS-1.9.1 -------------------------------------------------------------------------------- /doc/NEWS-1.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/NEWS-1.9.2 -------------------------------------------------------------------------------- /doc/NEWS-1.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/NEWS-1.9.3 -------------------------------------------------------------------------------- /doc/NEWS-2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/NEWS-2.0.0 -------------------------------------------------------------------------------- /doc/contributing.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/contributing.rdoc -------------------------------------------------------------------------------- /doc/etc.rd.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/etc.rd.ja -------------------------------------------------------------------------------- /doc/forwardable.rd.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/forwardable.rd.ja -------------------------------------------------------------------------------- /doc/globals.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/globals.rdoc -------------------------------------------------------------------------------- /doc/irb/irb.rd.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/irb/irb.rd.ja -------------------------------------------------------------------------------- /doc/marshal.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/marshal.rdoc -------------------------------------------------------------------------------- /doc/pty/README.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/pty/README.ja -------------------------------------------------------------------------------- /doc/regexp.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/regexp.rdoc -------------------------------------------------------------------------------- /doc/security.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/security.rdoc -------------------------------------------------------------------------------- /doc/shell.rd.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/shell.rd.ja -------------------------------------------------------------------------------- /doc/syntax.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/doc/syntax.rdoc -------------------------------------------------------------------------------- /enc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/Makefile.in -------------------------------------------------------------------------------- /enc/ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/ascii.c -------------------------------------------------------------------------------- /enc/big5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/big5.c -------------------------------------------------------------------------------- /enc/cp949.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/cp949.c -------------------------------------------------------------------------------- /enc/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/depend -------------------------------------------------------------------------------- /enc/emacs_mule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/emacs_mule.c -------------------------------------------------------------------------------- /enc/encdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/encdb.c -------------------------------------------------------------------------------- /enc/encinit.c.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/encinit.c.erb -------------------------------------------------------------------------------- /enc/euc_jp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/euc_jp.c -------------------------------------------------------------------------------- /enc/euc_kr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/euc_kr.c -------------------------------------------------------------------------------- /enc/euc_tw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/euc_tw.c -------------------------------------------------------------------------------- /enc/gb18030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/gb18030.c -------------------------------------------------------------------------------- /enc/gb2312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/gb2312.c -------------------------------------------------------------------------------- /enc/gbk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/gbk.c -------------------------------------------------------------------------------- /enc/iso_2022_jp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_2022_jp.h -------------------------------------------------------------------------------- /enc/iso_8859_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_1.c -------------------------------------------------------------------------------- /enc/iso_8859_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_10.c -------------------------------------------------------------------------------- /enc/iso_8859_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_11.c -------------------------------------------------------------------------------- /enc/iso_8859_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_13.c -------------------------------------------------------------------------------- /enc/iso_8859_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_14.c -------------------------------------------------------------------------------- /enc/iso_8859_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_15.c -------------------------------------------------------------------------------- /enc/iso_8859_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_16.c -------------------------------------------------------------------------------- /enc/iso_8859_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_2.c -------------------------------------------------------------------------------- /enc/iso_8859_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_3.c -------------------------------------------------------------------------------- /enc/iso_8859_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_4.c -------------------------------------------------------------------------------- /enc/iso_8859_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_5.c -------------------------------------------------------------------------------- /enc/iso_8859_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_6.c -------------------------------------------------------------------------------- /enc/iso_8859_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_7.c -------------------------------------------------------------------------------- /enc/iso_8859_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_8.c -------------------------------------------------------------------------------- /enc/iso_8859_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/iso_8859_9.c -------------------------------------------------------------------------------- /enc/koi8_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/koi8_r.c -------------------------------------------------------------------------------- /enc/koi8_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/koi8_u.c -------------------------------------------------------------------------------- /enc/make_encmake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/make_encmake.rb -------------------------------------------------------------------------------- /enc/mktable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/mktable.c -------------------------------------------------------------------------------- /enc/prelude.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/prelude.rb -------------------------------------------------------------------------------- /enc/shift_jis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/shift_jis.c -------------------------------------------------------------------------------- /enc/trans/big5.trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/big5.trans -------------------------------------------------------------------------------- /enc/trans/cp850-tbl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/cp850-tbl.rb -------------------------------------------------------------------------------- /enc/trans/cp852-tbl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/cp852-tbl.rb -------------------------------------------------------------------------------- /enc/trans/cp855-tbl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/cp855-tbl.rb -------------------------------------------------------------------------------- /enc/trans/cp949-tbl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/cp949-tbl.rb -------------------------------------------------------------------------------- /enc/trans/emoji.trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/emoji.trans -------------------------------------------------------------------------------- /enc/trans/escape.trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/escape.trans -------------------------------------------------------------------------------- /enc/trans/euckr-tbl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/euckr-tbl.rb -------------------------------------------------------------------------------- /enc/trans/gbk-tbl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/gbk-tbl.rb -------------------------------------------------------------------------------- /enc/trans/gbk.trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/gbk.trans -------------------------------------------------------------------------------- /enc/trans/korean.trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/korean.trans -------------------------------------------------------------------------------- /enc/trans/transdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/trans/transdb.c -------------------------------------------------------------------------------- /enc/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/unicode.c -------------------------------------------------------------------------------- /enc/unicode/casefold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/unicode/casefold.h -------------------------------------------------------------------------------- /enc/us_ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/us_ascii.c -------------------------------------------------------------------------------- /enc/utf_16_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/utf_16_32.h -------------------------------------------------------------------------------- /enc/utf_16be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/utf_16be.c -------------------------------------------------------------------------------- /enc/utf_16le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/utf_16le.c -------------------------------------------------------------------------------- /enc/utf_32be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/utf_32be.c -------------------------------------------------------------------------------- /enc/utf_32le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/utf_32le.c -------------------------------------------------------------------------------- /enc/utf_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/utf_7.h -------------------------------------------------------------------------------- /enc/utf_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/utf_8.c -------------------------------------------------------------------------------- /enc/windows_1251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/windows_1251.c -------------------------------------------------------------------------------- /enc/windows_31j.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/windows_31j.c -------------------------------------------------------------------------------- /enc/x_emoji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enc/x_emoji.h -------------------------------------------------------------------------------- /encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/encoding.c -------------------------------------------------------------------------------- /enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enum.c -------------------------------------------------------------------------------- /enumerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/enumerator.c -------------------------------------------------------------------------------- /error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/error.c -------------------------------------------------------------------------------- /eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/eval.c -------------------------------------------------------------------------------- /eval_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/eval_error.c -------------------------------------------------------------------------------- /eval_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/eval_intern.h -------------------------------------------------------------------------------- /eval_jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/eval_jump.c -------------------------------------------------------------------------------- /ext/-test-/array/resize/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("-test-/array/resize") 2 | -------------------------------------------------------------------------------- /ext/-test-/file/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/-test-/file/depend -------------------------------------------------------------------------------- /ext/-test-/file/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/-test-/file/init.c -------------------------------------------------------------------------------- /ext/-test-/file/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/-test-/file/stat.c -------------------------------------------------------------------------------- /ext/-test-/iter/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("-test-/iter/break") 2 | -------------------------------------------------------------------------------- /ext/-test-/load/dot.dot/dot.dot.c: -------------------------------------------------------------------------------- 1 | void Init_dot(void) {} 2 | -------------------------------------------------------------------------------- /ext/-test-/marshal/compat/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("-test-/marshal/compat") 2 | -------------------------------------------------------------------------------- /ext/-test-/marshal/usr/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("-test-/marshal/usr") 2 | -------------------------------------------------------------------------------- /ext/-test-/postponed_job/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile('-test-/postponed_job') 2 | -------------------------------------------------------------------------------- /ext/-test-/printf/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("-test-/printf") 2 | -------------------------------------------------------------------------------- /ext/-test-/st/numhash/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("-test-/st/numhash") 2 | -------------------------------------------------------------------------------- /ext/-test-/st/update/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("-test-/st/update") 2 | -------------------------------------------------------------------------------- /ext/-test-/tracepoint/extconf.rb: -------------------------------------------------------------------------------- 1 | create_makefile("-test-/tracepoint") 2 | -------------------------------------------------------------------------------- /ext/-test-/win32/dln/libdlntest.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dlntest_ordinal @1 NONAME 3 | -------------------------------------------------------------------------------- /ext/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/.document -------------------------------------------------------------------------------- /ext/Setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/Setup -------------------------------------------------------------------------------- /ext/Setup.atheos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/Setup.atheos -------------------------------------------------------------------------------- /ext/Setup.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/Setup.emx -------------------------------------------------------------------------------- /ext/Setup.nacl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/Setup.nacl -------------------------------------------------------------------------------- /ext/Setup.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/Setup.nt -------------------------------------------------------------------------------- /ext/bigdecimal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/bigdecimal/README -------------------------------------------------------------------------------- /ext/bigdecimal/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/bigdecimal/depend -------------------------------------------------------------------------------- /ext/continuation/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile('continuation') 3 | 4 | -------------------------------------------------------------------------------- /ext/coverage/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/coverage/depend -------------------------------------------------------------------------------- /ext/curses/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/curses/curses.c -------------------------------------------------------------------------------- /ext/curses/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/curses/depend -------------------------------------------------------------------------------- /ext/curses/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/curses/extconf.rb -------------------------------------------------------------------------------- /ext/date/date_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/date/date_core.c -------------------------------------------------------------------------------- /ext/date/date_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/date/date_parse.c -------------------------------------------------------------------------------- /ext/date/date_tmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/date/date_tmx.h -------------------------------------------------------------------------------- /ext/date/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/date/depend -------------------------------------------------------------------------------- /ext/date/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/date/extconf.rb -------------------------------------------------------------------------------- /ext/date/lib/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/date/lib/date.rb -------------------------------------------------------------------------------- /ext/date/lib/date/format.rb: -------------------------------------------------------------------------------- 1 | # format.rb: Written by Tadayoshi Funaba 1999-2011 2 | -------------------------------------------------------------------------------- /ext/dbm/dbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dbm/dbm.c -------------------------------------------------------------------------------- /ext/dbm/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dbm/extconf.rb -------------------------------------------------------------------------------- /ext/digest/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/defs.h -------------------------------------------------------------------------------- /ext/digest/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/depend -------------------------------------------------------------------------------- /ext/digest/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/digest.c -------------------------------------------------------------------------------- /ext/digest/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/digest.h -------------------------------------------------------------------------------- /ext/digest/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/extconf.rb -------------------------------------------------------------------------------- /ext/digest/md5/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/md5/depend -------------------------------------------------------------------------------- /ext/digest/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/md5/md5.c -------------------------------------------------------------------------------- /ext/digest/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/md5/md5.h -------------------------------------------------------------------------------- /ext/digest/sha1/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/sha1/depend -------------------------------------------------------------------------------- /ext/digest/sha1/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/sha1/sha1.c -------------------------------------------------------------------------------- /ext/digest/sha1/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/sha1/sha1.h -------------------------------------------------------------------------------- /ext/digest/sha2/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/sha2/depend -------------------------------------------------------------------------------- /ext/digest/sha2/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/sha2/sha2.c -------------------------------------------------------------------------------- /ext/digest/sha2/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/sha2/sha2.h -------------------------------------------------------------------------------- /ext/digest/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/digest/test.sh -------------------------------------------------------------------------------- /ext/dl/callback/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/callback/depend -------------------------------------------------------------------------------- /ext/dl/cfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/cfunc.c -------------------------------------------------------------------------------- /ext/dl/cptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/cptr.c -------------------------------------------------------------------------------- /ext/dl/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/depend -------------------------------------------------------------------------------- /ext/dl/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/dl.c -------------------------------------------------------------------------------- /ext/dl/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/dl.h -------------------------------------------------------------------------------- /ext/dl/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/extconf.rb -------------------------------------------------------------------------------- /ext/dl/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/handle.c -------------------------------------------------------------------------------- /ext/dl/lib/dl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/lib/dl.rb -------------------------------------------------------------------------------- /ext/dl/lib/dl/func.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/lib/dl/func.rb -------------------------------------------------------------------------------- /ext/dl/lib/dl/pack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/lib/dl/pack.rb -------------------------------------------------------------------------------- /ext/dl/lib/dl/stack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/lib/dl/stack.rb -------------------------------------------------------------------------------- /ext/dl/lib/dl/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/lib/dl/types.rb -------------------------------------------------------------------------------- /ext/dl/lib/dl/value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/dl/lib/dl/value.rb -------------------------------------------------------------------------------- /ext/etc/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/etc/depend -------------------------------------------------------------------------------- /ext/etc/etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/etc/etc.c -------------------------------------------------------------------------------- /ext/etc/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/etc/extconf.rb -------------------------------------------------------------------------------- /ext/extmk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/extmk.rb -------------------------------------------------------------------------------- /ext/fcntl/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile('fcntl') 3 | -------------------------------------------------------------------------------- /ext/fcntl/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fcntl/fcntl.c -------------------------------------------------------------------------------- /ext/fiber/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile('fiber') 3 | 4 | -------------------------------------------------------------------------------- /ext/fiber/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiber/fiber.c -------------------------------------------------------------------------------- /ext/fiddle/closure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/closure.c -------------------------------------------------------------------------------- /ext/fiddle/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/closure.h -------------------------------------------------------------------------------- /ext/fiddle/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/depend -------------------------------------------------------------------------------- /ext/fiddle/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/extconf.rb -------------------------------------------------------------------------------- /ext/fiddle/fiddle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/fiddle.c -------------------------------------------------------------------------------- /ext/fiddle/fiddle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/fiddle.h -------------------------------------------------------------------------------- /ext/fiddle/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/function.c -------------------------------------------------------------------------------- /ext/fiddle/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/function.h -------------------------------------------------------------------------------- /ext/fiddle/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/handle.c -------------------------------------------------------------------------------- /ext/fiddle/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/fiddle/pointer.c -------------------------------------------------------------------------------- /ext/gdbm/README: -------------------------------------------------------------------------------- 1 | gdbm ext-library for Ruby 1.3 or later 2 | -------------------------------------------------------------------------------- /ext/gdbm/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/gdbm/extconf.rb -------------------------------------------------------------------------------- /ext/gdbm/gdbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/gdbm/gdbm.c -------------------------------------------------------------------------------- /ext/io/console/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/io/console/depend -------------------------------------------------------------------------------- /ext/io/nonblock/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/io/nonblock/depend -------------------------------------------------------------------------------- /ext/io/wait/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/io/wait/depend -------------------------------------------------------------------------------- /ext/io/wait/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/io/wait/extconf.rb -------------------------------------------------------------------------------- /ext/io/wait/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/io/wait/wait.c -------------------------------------------------------------------------------- /ext/json/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile('json') 3 | 4 | -------------------------------------------------------------------------------- /ext/json/lib/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/json/lib/json.rb -------------------------------------------------------------------------------- /ext/json/parser/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/json/parser/depend -------------------------------------------------------------------------------- /ext/json/parser/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | 3 | create_makefile 'json/ext/parser' 4 | -------------------------------------------------------------------------------- /ext/mathn/complex/extconf.rb: -------------------------------------------------------------------------------- 1 | require "mkmf" 2 | 3 | create_makefile "mathn/complex" 4 | -------------------------------------------------------------------------------- /ext/nkf/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/nkf/depend -------------------------------------------------------------------------------- /ext/nkf/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile('nkf') 3 | -------------------------------------------------------------------------------- /ext/nkf/lib/kconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/nkf/lib/kconv.rb -------------------------------------------------------------------------------- /ext/nkf/nkf-utf8/nkf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/nkf/nkf-utf8/nkf.c -------------------------------------------------------------------------------- /ext/nkf/nkf-utf8/nkf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/nkf/nkf-utf8/nkf.h -------------------------------------------------------------------------------- /ext/nkf/nkf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/nkf/nkf.c -------------------------------------------------------------------------------- /ext/objspace/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/objspace/depend -------------------------------------------------------------------------------- /ext/objspace/gc_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/objspace/gc_hook.c -------------------------------------------------------------------------------- /ext/openssl/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/depend -------------------------------------------------------------------------------- /ext/openssl/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/extconf.rb -------------------------------------------------------------------------------- /ext/openssl/ossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/ossl.c -------------------------------------------------------------------------------- /ext/openssl/ossl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/ossl.h -------------------------------------------------------------------------------- /ext/openssl/ossl_bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/ossl_bio.c -------------------------------------------------------------------------------- /ext/openssl/ossl_bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/ossl_bio.h -------------------------------------------------------------------------------- /ext/openssl/ossl_bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/ossl_bn.c -------------------------------------------------------------------------------- /ext/openssl/ossl_bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/ossl_bn.h -------------------------------------------------------------------------------- /ext/openssl/ossl_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/ossl_ssl.c -------------------------------------------------------------------------------- /ext/openssl/ossl_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/openssl/ossl_ssl.h -------------------------------------------------------------------------------- /ext/pathname/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/pathname/depend -------------------------------------------------------------------------------- /ext/pathname/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile('pathname') 3 | -------------------------------------------------------------------------------- /ext/psych/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/.gitignore -------------------------------------------------------------------------------- /ext/psych/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/depend -------------------------------------------------------------------------------- /ext/psych/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/extconf.rb -------------------------------------------------------------------------------- /ext/psych/lib/psych.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/lib/psych.rb -------------------------------------------------------------------------------- /ext/psych/psych.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/psych.c -------------------------------------------------------------------------------- /ext/psych/psych.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/psych.h -------------------------------------------------------------------------------- /ext/psych/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/yaml/LICENSE -------------------------------------------------------------------------------- /ext/psych/yaml/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/yaml/api.c -------------------------------------------------------------------------------- /ext/psych/yaml/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/psych/yaml/yaml.h -------------------------------------------------------------------------------- /ext/pty/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/pty/depend -------------------------------------------------------------------------------- /ext/pty/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/pty/extconf.rb -------------------------------------------------------------------------------- /ext/pty/lib/expect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/pty/lib/expect.rb -------------------------------------------------------------------------------- /ext/pty/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/pty/pty.c -------------------------------------------------------------------------------- /ext/racc/cparse/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/racc/cparse/README -------------------------------------------------------------------------------- /ext/readline/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/readline/README -------------------------------------------------------------------------------- /ext/readline/README.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/readline/README.ja -------------------------------------------------------------------------------- /ext/readline/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/readline/depend -------------------------------------------------------------------------------- /ext/ripper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/ripper/README -------------------------------------------------------------------------------- /ext/ripper/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/ripper/depend -------------------------------------------------------------------------------- /ext/ripper/eventids2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/ripper/eventids2.c -------------------------------------------------------------------------------- /ext/ripper/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/ripper/extconf.rb -------------------------------------------------------------------------------- /ext/sdbm/_sdbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/sdbm/_sdbm.c -------------------------------------------------------------------------------- /ext/sdbm/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/sdbm/depend -------------------------------------------------------------------------------- /ext/sdbm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/sdbm/init.c -------------------------------------------------------------------------------- /ext/sdbm/sdbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/sdbm/sdbm.h -------------------------------------------------------------------------------- /ext/socket/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/.document -------------------------------------------------------------------------------- /ext/socket/addrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/addrinfo.h -------------------------------------------------------------------------------- /ext/socket/ancdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/ancdata.c -------------------------------------------------------------------------------- /ext/socket/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/constants.c -------------------------------------------------------------------------------- /ext/socket/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/depend -------------------------------------------------------------------------------- /ext/socket/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/extconf.rb -------------------------------------------------------------------------------- /ext/socket/ifaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/ifaddr.c -------------------------------------------------------------------------------- /ext/socket/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/init.c -------------------------------------------------------------------------------- /ext/socket/ipsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/ipsocket.c -------------------------------------------------------------------------------- /ext/socket/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/option.c -------------------------------------------------------------------------------- /ext/socket/raddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/raddrinfo.c -------------------------------------------------------------------------------- /ext/socket/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/socket.c -------------------------------------------------------------------------------- /ext/socket/sockport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/sockport.h -------------------------------------------------------------------------------- /ext/socket/tcpserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/tcpserver.c -------------------------------------------------------------------------------- /ext/socket/tcpsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/tcpsocket.c -------------------------------------------------------------------------------- /ext/socket/udpsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/socket/udpsocket.c -------------------------------------------------------------------------------- /ext/stringio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/stringio/README -------------------------------------------------------------------------------- /ext/stringio/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/stringio/depend -------------------------------------------------------------------------------- /ext/stringio/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile('stringio') 3 | -------------------------------------------------------------------------------- /ext/strscan/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/strscan/depend -------------------------------------------------------------------------------- /ext/strscan/strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/strscan/strscan.c -------------------------------------------------------------------------------- /ext/syslog/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/syslog/depend -------------------------------------------------------------------------------- /ext/syslog/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/syslog/extconf.rb -------------------------------------------------------------------------------- /ext/syslog/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/syslog/syslog.c -------------------------------------------------------------------------------- /ext/syslog/syslog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/syslog/syslog.txt -------------------------------------------------------------------------------- /ext/thread/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | 3 | create_makefile('thread') 4 | -------------------------------------------------------------------------------- /ext/thread/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/thread/thread.c -------------------------------------------------------------------------------- /ext/tk/README.1st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/README.1st -------------------------------------------------------------------------------- /ext/tk/README.fork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/README.fork -------------------------------------------------------------------------------- /ext/tk/README.tcltklib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/README.tcltklib -------------------------------------------------------------------------------- /ext/tk/config_list.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/config_list.in -------------------------------------------------------------------------------- /ext/tk/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/depend -------------------------------------------------------------------------------- /ext/tk/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/extconf.rb -------------------------------------------------------------------------------- /ext/tk/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/README -------------------------------------------------------------------------------- /ext/tk/lib/multi-tk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/multi-tk.rb -------------------------------------------------------------------------------- /ext/tk/lib/tcltk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tcltk.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/after.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/after.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/busy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/busy.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/clock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/clock.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/entry.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/event.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/font.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/frame.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/grid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/grid.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/image.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/label.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/menu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/menu.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/pack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/pack.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/place.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/root.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/scale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/scale.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/text.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/timer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/timer.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/winfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/winfo.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/wm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/wm.rb -------------------------------------------------------------------------------- /ext/tk/lib/tk/xim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tk/xim.rb -------------------------------------------------------------------------------- /ext/tk/lib/tkafter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tkafter.rb -------------------------------------------------------------------------------- /ext/tk/lib/tkcanvas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tkcanvas.rb -------------------------------------------------------------------------------- /ext/tk/lib/tkclass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tkclass.rb -------------------------------------------------------------------------------- /ext/tk/lib/tkdialog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tkdialog.rb -------------------------------------------------------------------------------- /ext/tk/lib/tkentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tkentry.rb -------------------------------------------------------------------------------- /ext/tk/lib/tkfont.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tkfont.rb -------------------------------------------------------------------------------- /ext/tk/lib/tkmacpkg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tkmacpkg.rb -------------------------------------------------------------------------------- /ext/tk/lib/tktext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tktext.rb -------------------------------------------------------------------------------- /ext/tk/lib/tkwinpkg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/lib/tkwinpkg.rb -------------------------------------------------------------------------------- /ext/tk/old-extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/old-extconf.rb -------------------------------------------------------------------------------- /ext/tk/sample/irbtk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/sample/irbtk.rb -------------------------------------------------------------------------------- /ext/tk/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/stubs.c -------------------------------------------------------------------------------- /ext/tk/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/stubs.h -------------------------------------------------------------------------------- /ext/tk/tcltklib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/tcltklib.c -------------------------------------------------------------------------------- /ext/tk/tkutil/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/tkutil/depend -------------------------------------------------------------------------------- /ext/tk/tkutil/tkutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/tk/tkutil/tkutil.c -------------------------------------------------------------------------------- /ext/win32/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/win32/extconf.rb -------------------------------------------------------------------------------- /ext/win32ole/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/win32ole/depend -------------------------------------------------------------------------------- /ext/zlib/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/zlib/depend -------------------------------------------------------------------------------- /ext/zlib/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/zlib/extconf.rb -------------------------------------------------------------------------------- /ext/zlib/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ext/zlib/zlib.c -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/file.c -------------------------------------------------------------------------------- /gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/gc.c -------------------------------------------------------------------------------- /gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/gc.h -------------------------------------------------------------------------------- /gem_prelude.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems.rb' if defined?(Gem) 2 | -------------------------------------------------------------------------------- /golf_prelude.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/golf_prelude.rb -------------------------------------------------------------------------------- /goruby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/goruby.c -------------------------------------------------------------------------------- /hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/hash.c -------------------------------------------------------------------------------- /ia64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ia64.s -------------------------------------------------------------------------------- /include/ruby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby.h -------------------------------------------------------------------------------- /include/ruby/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/debug.h -------------------------------------------------------------------------------- /include/ruby/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/defines.h -------------------------------------------------------------------------------- /include/ruby/intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/intern.h -------------------------------------------------------------------------------- /include/ruby/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/io.h -------------------------------------------------------------------------------- /include/ruby/missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/missing.h -------------------------------------------------------------------------------- /include/ruby/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/re.h -------------------------------------------------------------------------------- /include/ruby/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/regex.h -------------------------------------------------------------------------------- /include/ruby/ruby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/ruby.h -------------------------------------------------------------------------------- /include/ruby/st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/st.h -------------------------------------------------------------------------------- /include/ruby/subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/subst.h -------------------------------------------------------------------------------- /include/ruby/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/thread.h -------------------------------------------------------------------------------- /include/ruby/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/util.h -------------------------------------------------------------------------------- /include/ruby/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/version.h -------------------------------------------------------------------------------- /include/ruby/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/vm.h -------------------------------------------------------------------------------- /include/ruby/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/include/ruby/win32.h -------------------------------------------------------------------------------- /inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/inits.c -------------------------------------------------------------------------------- /insns.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/insns.def -------------------------------------------------------------------------------- /internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/internal.h -------------------------------------------------------------------------------- /io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/io.c -------------------------------------------------------------------------------- /iseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/iseq.c -------------------------------------------------------------------------------- /iseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/iseq.h -------------------------------------------------------------------------------- /lex.c.blt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lex.c.blt -------------------------------------------------------------------------------- /lib/English.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/English.rb -------------------------------------------------------------------------------- /lib/abbrev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/abbrev.rb -------------------------------------------------------------------------------- /lib/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/base64.rb -------------------------------------------------------------------------------- /lib/benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/benchmark.rb -------------------------------------------------------------------------------- /lib/cgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/cgi.rb -------------------------------------------------------------------------------- /lib/cgi/cookie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/cgi/cookie.rb -------------------------------------------------------------------------------- /lib/cgi/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/cgi/core.rb -------------------------------------------------------------------------------- /lib/cgi/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/cgi/html.rb -------------------------------------------------------------------------------- /lib/cgi/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/cgi/session.rb -------------------------------------------------------------------------------- /lib/cgi/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/cgi/util.rb -------------------------------------------------------------------------------- /lib/cmath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/cmath.rb -------------------------------------------------------------------------------- /lib/complex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/complex.rb -------------------------------------------------------------------------------- /lib/csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/csv.rb -------------------------------------------------------------------------------- /lib/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/debug.rb -------------------------------------------------------------------------------- /lib/delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/delegate.rb -------------------------------------------------------------------------------- /lib/drb.rb: -------------------------------------------------------------------------------- 1 | require 'drb/drb' 2 | 3 | -------------------------------------------------------------------------------- /lib/drb/acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/acl.rb -------------------------------------------------------------------------------- /lib/drb/drb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/drb.rb -------------------------------------------------------------------------------- /lib/drb/eq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/eq.rb -------------------------------------------------------------------------------- /lib/drb/extserv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/extserv.rb -------------------------------------------------------------------------------- /lib/drb/extservm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/extservm.rb -------------------------------------------------------------------------------- /lib/drb/gw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/gw.rb -------------------------------------------------------------------------------- /lib/drb/observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/observer.rb -------------------------------------------------------------------------------- /lib/drb/ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/ssl.rb -------------------------------------------------------------------------------- /lib/drb/timeridconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/timeridconv.rb -------------------------------------------------------------------------------- /lib/drb/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/drb/unix.rb -------------------------------------------------------------------------------- /lib/e2mmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/e2mmap.rb -------------------------------------------------------------------------------- /lib/erb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/erb.rb -------------------------------------------------------------------------------- /lib/fileutils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/fileutils.rb -------------------------------------------------------------------------------- /lib/find.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/find.rb -------------------------------------------------------------------------------- /lib/forwardable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/forwardable.rb -------------------------------------------------------------------------------- /lib/getoptlong.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/getoptlong.rb -------------------------------------------------------------------------------- /lib/gserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/gserver.rb -------------------------------------------------------------------------------- /lib/ipaddr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/ipaddr.rb -------------------------------------------------------------------------------- /lib/irb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb.rb -------------------------------------------------------------------------------- /lib/irb/cmd/chws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/cmd/chws.rb -------------------------------------------------------------------------------- /lib/irb/cmd/fork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/cmd/fork.rb -------------------------------------------------------------------------------- /lib/irb/cmd/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/cmd/help.rb -------------------------------------------------------------------------------- /lib/irb/cmd/load.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/cmd/load.rb -------------------------------------------------------------------------------- /lib/irb/cmd/nop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/cmd/nop.rb -------------------------------------------------------------------------------- /lib/irb/cmd/pushws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/cmd/pushws.rb -------------------------------------------------------------------------------- /lib/irb/cmd/subirb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/cmd/subirb.rb -------------------------------------------------------------------------------- /lib/irb/completion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/completion.rb -------------------------------------------------------------------------------- /lib/irb/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/context.rb -------------------------------------------------------------------------------- /lib/irb/ext/history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/ext/history.rb -------------------------------------------------------------------------------- /lib/irb/ext/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/ext/loader.rb -------------------------------------------------------------------------------- /lib/irb/ext/tracer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/ext/tracer.rb -------------------------------------------------------------------------------- /lib/irb/frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/frame.rb -------------------------------------------------------------------------------- /lib/irb/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/help.rb -------------------------------------------------------------------------------- /lib/irb/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/init.rb -------------------------------------------------------------------------------- /lib/irb/inspector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/inspector.rb -------------------------------------------------------------------------------- /lib/irb/lc/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/lc/.document -------------------------------------------------------------------------------- /lib/irb/lc/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/lc/error.rb -------------------------------------------------------------------------------- /lib/irb/lc/ja/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/lc/ja/error.rb -------------------------------------------------------------------------------- /lib/irb/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/locale.rb -------------------------------------------------------------------------------- /lib/irb/magic-file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/magic-file.rb -------------------------------------------------------------------------------- /lib/irb/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/notifier.rb -------------------------------------------------------------------------------- /lib/irb/ruby-lex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/ruby-lex.rb -------------------------------------------------------------------------------- /lib/irb/ruby-token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/ruby-token.rb -------------------------------------------------------------------------------- /lib/irb/slex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/slex.rb -------------------------------------------------------------------------------- /lib/irb/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/version.rb -------------------------------------------------------------------------------- /lib/irb/workspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/workspace.rb -------------------------------------------------------------------------------- /lib/irb/xmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/irb/xmp.rb -------------------------------------------------------------------------------- /lib/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/logger.rb -------------------------------------------------------------------------------- /lib/mathn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/mathn.rb -------------------------------------------------------------------------------- /lib/matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/matrix.rb -------------------------------------------------------------------------------- /lib/minitest/hell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/minitest/hell.rb -------------------------------------------------------------------------------- /lib/minitest/mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/minitest/mock.rb -------------------------------------------------------------------------------- /lib/minitest/pride.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/minitest/pride.rb -------------------------------------------------------------------------------- /lib/minitest/spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/minitest/spec.rb -------------------------------------------------------------------------------- /lib/minitest/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/minitest/unit.rb -------------------------------------------------------------------------------- /lib/mkmf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/mkmf.rb -------------------------------------------------------------------------------- /lib/monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/monitor.rb -------------------------------------------------------------------------------- /lib/mutex_m.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/mutex_m.rb -------------------------------------------------------------------------------- /lib/net/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/ftp.rb -------------------------------------------------------------------------------- /lib/net/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/http.rb -------------------------------------------------------------------------------- /lib/net/http/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/http/header.rb -------------------------------------------------------------------------------- /lib/net/https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/https.rb -------------------------------------------------------------------------------- /lib/net/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/imap.rb -------------------------------------------------------------------------------- /lib/net/pop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/pop.rb -------------------------------------------------------------------------------- /lib/net/protocol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/protocol.rb -------------------------------------------------------------------------------- /lib/net/smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/smtp.rb -------------------------------------------------------------------------------- /lib/net/telnet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/net/telnet.rb -------------------------------------------------------------------------------- /lib/observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/observer.rb -------------------------------------------------------------------------------- /lib/open-uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/open-uri.rb -------------------------------------------------------------------------------- /lib/open3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/open3.rb -------------------------------------------------------------------------------- /lib/optparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/optparse.rb -------------------------------------------------------------------------------- /lib/optparse/ac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/optparse/ac.rb -------------------------------------------------------------------------------- /lib/optparse/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/optparse/date.rb -------------------------------------------------------------------------------- /lib/optparse/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/optparse/time.rb -------------------------------------------------------------------------------- /lib/optparse/uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/optparse/uri.rb -------------------------------------------------------------------------------- /lib/ostruct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/ostruct.rb -------------------------------------------------------------------------------- /lib/pp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/pp.rb -------------------------------------------------------------------------------- /lib/prettyprint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/prettyprint.rb -------------------------------------------------------------------------------- /lib/prime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/prime.rb -------------------------------------------------------------------------------- /lib/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/profile.rb -------------------------------------------------------------------------------- /lib/profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/profiler.rb -------------------------------------------------------------------------------- /lib/pstore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/pstore.rb -------------------------------------------------------------------------------- /lib/racc/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/racc/parser.rb -------------------------------------------------------------------------------- /lib/rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake.rb -------------------------------------------------------------------------------- /lib/rake/alt_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/alt_system.rb -------------------------------------------------------------------------------- /lib/rake/backtrace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/backtrace.rb -------------------------------------------------------------------------------- /lib/rake/clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/clean.rb -------------------------------------------------------------------------------- /lib/rake/cloneable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/cloneable.rb -------------------------------------------------------------------------------- /lib/rake/early_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/early_time.rb -------------------------------------------------------------------------------- /lib/rake/ext/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/ext/core.rb -------------------------------------------------------------------------------- /lib/rake/ext/module.rb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/rake/ext/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/ext/string.rb -------------------------------------------------------------------------------- /lib/rake/ext/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/ext/time.rb -------------------------------------------------------------------------------- /lib/rake/file_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/file_list.rb -------------------------------------------------------------------------------- /lib/rake/file_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/file_task.rb -------------------------------------------------------------------------------- /lib/rake/file_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/file_utils.rb -------------------------------------------------------------------------------- /lib/rake/lib/.document: -------------------------------------------------------------------------------- 1 | # Ignore project.rake 2 | -------------------------------------------------------------------------------- /lib/rake/multi_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/multi_task.rb -------------------------------------------------------------------------------- /lib/rake/name_space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/name_space.rb -------------------------------------------------------------------------------- /lib/rake/pathmap.rb: -------------------------------------------------------------------------------- 1 | require 'rake/ext/string' 2 | -------------------------------------------------------------------------------- /lib/rake/phony.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/phony.rb -------------------------------------------------------------------------------- /lib/rake/promise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/promise.rb -------------------------------------------------------------------------------- /lib/rake/rdoctask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/rdoctask.rb -------------------------------------------------------------------------------- /lib/rake/runtest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/runtest.rb -------------------------------------------------------------------------------- /lib/rake/scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/scope.rb -------------------------------------------------------------------------------- /lib/rake/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/task.rb -------------------------------------------------------------------------------- /lib/rake/tasklib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/tasklib.rb -------------------------------------------------------------------------------- /lib/rake/testtask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/testtask.rb -------------------------------------------------------------------------------- /lib/rake/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/version.rb -------------------------------------------------------------------------------- /lib/rake/win32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rake/win32.rb -------------------------------------------------------------------------------- /lib/rational.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rational.rb -------------------------------------------------------------------------------- /lib/rbconfig/.document: -------------------------------------------------------------------------------- 1 | # these files are obsolete 2 | -------------------------------------------------------------------------------- /lib/rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc.rb -------------------------------------------------------------------------------- /lib/rdoc/alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/alias.rb -------------------------------------------------------------------------------- /lib/rdoc/anon_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/anon_class.rb -------------------------------------------------------------------------------- /lib/rdoc/any_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/any_method.rb -------------------------------------------------------------------------------- /lib/rdoc/attr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/attr.rb -------------------------------------------------------------------------------- /lib/rdoc/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/comment.rb -------------------------------------------------------------------------------- /lib/rdoc/constant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/constant.rb -------------------------------------------------------------------------------- /lib/rdoc/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/context.rb -------------------------------------------------------------------------------- /lib/rdoc/encoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/encoding.rb -------------------------------------------------------------------------------- /lib/rdoc/erbio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/erbio.rb -------------------------------------------------------------------------------- /lib/rdoc/extend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/extend.rb -------------------------------------------------------------------------------- /lib/rdoc/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/generator.rb -------------------------------------------------------------------------------- /lib/rdoc/generator/template/darkfish/.document: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/rdoc/include.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/include.rb -------------------------------------------------------------------------------- /lib/rdoc/markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/markdown.rb -------------------------------------------------------------------------------- /lib/rdoc/markup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/markup.rb -------------------------------------------------------------------------------- /lib/rdoc/markup/raw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/markup/raw.rb -------------------------------------------------------------------------------- /lib/rdoc/mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/mixin.rb -------------------------------------------------------------------------------- /lib/rdoc/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/options.rb -------------------------------------------------------------------------------- /lib/rdoc/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/parser.rb -------------------------------------------------------------------------------- /lib/rdoc/parser/c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/parser/c.rb -------------------------------------------------------------------------------- /lib/rdoc/parser/rd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/parser/rd.rb -------------------------------------------------------------------------------- /lib/rdoc/rd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/rd.rb -------------------------------------------------------------------------------- /lib/rdoc/rd/inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/rd/inline.rb -------------------------------------------------------------------------------- /lib/rdoc/rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/rdoc.rb -------------------------------------------------------------------------------- /lib/rdoc/require.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/require.rb -------------------------------------------------------------------------------- /lib/rdoc/ri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/ri.rb -------------------------------------------------------------------------------- /lib/rdoc/ri/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/ri/driver.rb -------------------------------------------------------------------------------- /lib/rdoc/ri/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/ri/paths.rb -------------------------------------------------------------------------------- /lib/rdoc/ri/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/ri/store.rb -------------------------------------------------------------------------------- /lib/rdoc/ruby_lex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/ruby_lex.rb -------------------------------------------------------------------------------- /lib/rdoc/ruby_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/ruby_token.rb -------------------------------------------------------------------------------- /lib/rdoc/servlet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/servlet.rb -------------------------------------------------------------------------------- /lib/rdoc/stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/stats.rb -------------------------------------------------------------------------------- /lib/rdoc/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/store.rb -------------------------------------------------------------------------------- /lib/rdoc/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/task.rb -------------------------------------------------------------------------------- /lib/rdoc/test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/test_case.rb -------------------------------------------------------------------------------- /lib/rdoc/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/text.rb -------------------------------------------------------------------------------- /lib/rdoc/tom_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/tom_doc.rb -------------------------------------------------------------------------------- /lib/rdoc/top_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rdoc/top_level.rb -------------------------------------------------------------------------------- /lib/resolv-replace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/resolv-replace.rb -------------------------------------------------------------------------------- /lib/resolv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/resolv.rb -------------------------------------------------------------------------------- /lib/rexml/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/attribute.rb -------------------------------------------------------------------------------- /lib/rexml/cdata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/cdata.rb -------------------------------------------------------------------------------- /lib/rexml/child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/child.rb -------------------------------------------------------------------------------- /lib/rexml/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/comment.rb -------------------------------------------------------------------------------- /lib/rexml/doctype.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/doctype.rb -------------------------------------------------------------------------------- /lib/rexml/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/document.rb -------------------------------------------------------------------------------- /lib/rexml/dtd/dtd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/dtd/dtd.rb -------------------------------------------------------------------------------- /lib/rexml/element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/element.rb -------------------------------------------------------------------------------- /lib/rexml/encoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/encoding.rb -------------------------------------------------------------------------------- /lib/rexml/entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/entity.rb -------------------------------------------------------------------------------- /lib/rexml/functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/functions.rb -------------------------------------------------------------------------------- /lib/rexml/namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/namespace.rb -------------------------------------------------------------------------------- /lib/rexml/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/node.rb -------------------------------------------------------------------------------- /lib/rexml/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/output.rb -------------------------------------------------------------------------------- /lib/rexml/parent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/parent.rb -------------------------------------------------------------------------------- /lib/rexml/quickpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/quickpath.rb -------------------------------------------------------------------------------- /lib/rexml/rexml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/rexml.rb -------------------------------------------------------------------------------- /lib/rexml/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/security.rb -------------------------------------------------------------------------------- /lib/rexml/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/source.rb -------------------------------------------------------------------------------- /lib/rexml/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/text.rb -------------------------------------------------------------------------------- /lib/rexml/xmldecl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/xmldecl.rb -------------------------------------------------------------------------------- /lib/rexml/xmltokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/xmltokens.rb -------------------------------------------------------------------------------- /lib/rexml/xpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rexml/xpath.rb -------------------------------------------------------------------------------- /lib/rinda/rinda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rinda/rinda.rb -------------------------------------------------------------------------------- /lib/rinda/ring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rinda/ring.rb -------------------------------------------------------------------------------- /lib/rss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss.rb -------------------------------------------------------------------------------- /lib/rss/0.9.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/0.9.rb -------------------------------------------------------------------------------- /lib/rss/1.0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/1.0.rb -------------------------------------------------------------------------------- /lib/rss/2.0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/2.0.rb -------------------------------------------------------------------------------- /lib/rss/atom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/atom.rb -------------------------------------------------------------------------------- /lib/rss/content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/content.rb -------------------------------------------------------------------------------- /lib/rss/content/1.0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/content/1.0.rb -------------------------------------------------------------------------------- /lib/rss/content/2.0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/content/2.0.rb -------------------------------------------------------------------------------- /lib/rss/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/converter.rb -------------------------------------------------------------------------------- /lib/rss/dublincore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/dublincore.rb -------------------------------------------------------------------------------- /lib/rss/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/image.rb -------------------------------------------------------------------------------- /lib/rss/itunes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/itunes.rb -------------------------------------------------------------------------------- /lib/rss/maker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker.rb -------------------------------------------------------------------------------- /lib/rss/maker/0.9.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/0.9.rb -------------------------------------------------------------------------------- /lib/rss/maker/1.0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/1.0.rb -------------------------------------------------------------------------------- /lib/rss/maker/2.0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/2.0.rb -------------------------------------------------------------------------------- /lib/rss/maker/atom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/atom.rb -------------------------------------------------------------------------------- /lib/rss/maker/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/base.rb -------------------------------------------------------------------------------- /lib/rss/maker/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/entry.rb -------------------------------------------------------------------------------- /lib/rss/maker/feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/feed.rb -------------------------------------------------------------------------------- /lib/rss/maker/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/image.rb -------------------------------------------------------------------------------- /lib/rss/maker/slash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/maker/slash.rb -------------------------------------------------------------------------------- /lib/rss/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/parser.rb -------------------------------------------------------------------------------- /lib/rss/rexmlparser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/rexmlparser.rb -------------------------------------------------------------------------------- /lib/rss/rss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/rss.rb -------------------------------------------------------------------------------- /lib/rss/slash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/slash.rb -------------------------------------------------------------------------------- /lib/rss/syndication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/syndication.rb -------------------------------------------------------------------------------- /lib/rss/taxonomy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/taxonomy.rb -------------------------------------------------------------------------------- /lib/rss/trackback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/trackback.rb -------------------------------------------------------------------------------- /lib/rss/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/utils.rb -------------------------------------------------------------------------------- /lib/rss/xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/xml.rb -------------------------------------------------------------------------------- /lib/rss/xmlparser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/xmlparser.rb -------------------------------------------------------------------------------- /lib/rss/xmlscanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rss/xmlscanner.rb -------------------------------------------------------------------------------- /lib/rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rubygems.rb -------------------------------------------------------------------------------- /lib/rubygems/doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rubygems/doctor.rb -------------------------------------------------------------------------------- /lib/rubygems/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rubygems/errors.rb -------------------------------------------------------------------------------- /lib/rubygems/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rubygems/ext.rb -------------------------------------------------------------------------------- /lib/rubygems/rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rubygems/rdoc.rb -------------------------------------------------------------------------------- /lib/rubygems/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rubygems/server.rb -------------------------------------------------------------------------------- /lib/rubygems/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rubygems/source.rb -------------------------------------------------------------------------------- /lib/rubygems/ssl_certs/.document: -------------------------------------------------------------------------------- 1 | # Ignore all files in this directory 2 | -------------------------------------------------------------------------------- /lib/rubygems/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/rubygems/text.rb -------------------------------------------------------------------------------- /lib/scanf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/scanf.rb -------------------------------------------------------------------------------- /lib/securerandom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/securerandom.rb -------------------------------------------------------------------------------- /lib/set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/set.rb -------------------------------------------------------------------------------- /lib/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/shell.rb -------------------------------------------------------------------------------- /lib/shell/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/shell/error.rb -------------------------------------------------------------------------------- /lib/shell/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/shell/filter.rb -------------------------------------------------------------------------------- /lib/shell/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/shell/version.rb -------------------------------------------------------------------------------- /lib/shellwords.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/shellwords.rb -------------------------------------------------------------------------------- /lib/singleton.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/singleton.rb -------------------------------------------------------------------------------- /lib/sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/sync.rb -------------------------------------------------------------------------------- /lib/tempfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/tempfile.rb -------------------------------------------------------------------------------- /lib/test/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/test/unit.rb -------------------------------------------------------------------------------- /lib/thwait.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/thwait.rb -------------------------------------------------------------------------------- /lib/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/time.rb -------------------------------------------------------------------------------- /lib/timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/timeout.rb -------------------------------------------------------------------------------- /lib/tmpdir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/tmpdir.rb -------------------------------------------------------------------------------- /lib/tracer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/tracer.rb -------------------------------------------------------------------------------- /lib/tsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/tsort.rb -------------------------------------------------------------------------------- /lib/ubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/ubygems.rb -------------------------------------------------------------------------------- /lib/un.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/un.rb -------------------------------------------------------------------------------- /lib/uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri.rb -------------------------------------------------------------------------------- /lib/uri/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri/common.rb -------------------------------------------------------------------------------- /lib/uri/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri/ftp.rb -------------------------------------------------------------------------------- /lib/uri/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri/generic.rb -------------------------------------------------------------------------------- /lib/uri/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri/http.rb -------------------------------------------------------------------------------- /lib/uri/https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri/https.rb -------------------------------------------------------------------------------- /lib/uri/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri/ldap.rb -------------------------------------------------------------------------------- /lib/uri/ldaps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri/ldaps.rb -------------------------------------------------------------------------------- /lib/uri/mailto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/uri/mailto.rb -------------------------------------------------------------------------------- /lib/weakref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/weakref.rb -------------------------------------------------------------------------------- /lib/webrick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick.rb -------------------------------------------------------------------------------- /lib/webrick/cgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/cgi.rb -------------------------------------------------------------------------------- /lib/webrick/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/compat.rb -------------------------------------------------------------------------------- /lib/webrick/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/config.rb -------------------------------------------------------------------------------- /lib/webrick/cookie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/cookie.rb -------------------------------------------------------------------------------- /lib/webrick/https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/https.rb -------------------------------------------------------------------------------- /lib/webrick/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/log.rb -------------------------------------------------------------------------------- /lib/webrick/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/server.rb -------------------------------------------------------------------------------- /lib/webrick/ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/ssl.rb -------------------------------------------------------------------------------- /lib/webrick/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/utils.rb -------------------------------------------------------------------------------- /lib/webrick/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/webrick/version.rb -------------------------------------------------------------------------------- /lib/xmlrpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/xmlrpc.rb -------------------------------------------------------------------------------- /lib/xmlrpc/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/xmlrpc/base64.rb -------------------------------------------------------------------------------- /lib/xmlrpc/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/xmlrpc/client.rb -------------------------------------------------------------------------------- /lib/xmlrpc/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/xmlrpc/config.rb -------------------------------------------------------------------------------- /lib/xmlrpc/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/xmlrpc/create.rb -------------------------------------------------------------------------------- /lib/xmlrpc/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/xmlrpc/utils.rb -------------------------------------------------------------------------------- /lib/yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/yaml.rb -------------------------------------------------------------------------------- /lib/yaml/dbm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/yaml/dbm.rb -------------------------------------------------------------------------------- /lib/yaml/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/lib/yaml/store.rb -------------------------------------------------------------------------------- /load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/load.c -------------------------------------------------------------------------------- /loadpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/loadpath.c -------------------------------------------------------------------------------- /localeinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/localeinit.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/main.c -------------------------------------------------------------------------------- /man/erb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/man/erb.1 -------------------------------------------------------------------------------- /man/goruby.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/man/goruby.1 -------------------------------------------------------------------------------- /man/irb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/man/irb.1 -------------------------------------------------------------------------------- /man/rake.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/man/rake.1 -------------------------------------------------------------------------------- /man/ri.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/man/ri.1 -------------------------------------------------------------------------------- /man/ruby.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/man/ruby.1 -------------------------------------------------------------------------------- /marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/marshal.c -------------------------------------------------------------------------------- /math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/math.c -------------------------------------------------------------------------------- /method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/method.h -------------------------------------------------------------------------------- /miniinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/miniinit.c -------------------------------------------------------------------------------- /misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/misc/README -------------------------------------------------------------------------------- /misc/inf-ruby.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/misc/inf-ruby.el -------------------------------------------------------------------------------- /misc/rdoc-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/misc/rdoc-mode.el -------------------------------------------------------------------------------- /misc/ruby-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/misc/ruby-mode.el -------------------------------------------------------------------------------- /misc/ruby-style.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/misc/ruby-style.el -------------------------------------------------------------------------------- /misc/rubydb2x.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/misc/rubydb2x.el -------------------------------------------------------------------------------- /misc/rubydb3x.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/misc/rubydb3x.el -------------------------------------------------------------------------------- /missing/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/acosh.c -------------------------------------------------------------------------------- /missing/alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/alloca.c -------------------------------------------------------------------------------- /missing/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/cbrt.c -------------------------------------------------------------------------------- /missing/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/close.c -------------------------------------------------------------------------------- /missing/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/crypt.c -------------------------------------------------------------------------------- /missing/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/dup2.c -------------------------------------------------------------------------------- /missing/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/erf.c -------------------------------------------------------------------------------- /missing/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/ffs.c -------------------------------------------------------------------------------- /missing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/file.h -------------------------------------------------------------------------------- /missing/fileblocks.c: -------------------------------------------------------------------------------- 1 | /* dummy for autoconf */ 2 | -------------------------------------------------------------------------------- /missing/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/finite.c -------------------------------------------------------------------------------- /missing/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/flock.c -------------------------------------------------------------------------------- /missing/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/hypot.c -------------------------------------------------------------------------------- /missing/isinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/isinf.c -------------------------------------------------------------------------------- /missing/isnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/isnan.c -------------------------------------------------------------------------------- /missing/langinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/langinfo.c -------------------------------------------------------------------------------- /missing/lgamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/lgamma_r.c -------------------------------------------------------------------------------- /missing/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/memcmp.c -------------------------------------------------------------------------------- /missing/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/memmove.c -------------------------------------------------------------------------------- /missing/os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/os2.c -------------------------------------------------------------------------------- /missing/signbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/signbit.c -------------------------------------------------------------------------------- /missing/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/strchr.c -------------------------------------------------------------------------------- /missing/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/strerror.c -------------------------------------------------------------------------------- /missing/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/strlcat.c -------------------------------------------------------------------------------- /missing/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/strlcpy.c -------------------------------------------------------------------------------- /missing/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/strstr.c -------------------------------------------------------------------------------- /missing/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/strtol.c -------------------------------------------------------------------------------- /missing/tgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/missing/tgamma.c -------------------------------------------------------------------------------- /nacl/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/GNUmakefile.in -------------------------------------------------------------------------------- /nacl/README.nacl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/README.nacl -------------------------------------------------------------------------------- /nacl/create_nmf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/create_nmf.rb -------------------------------------------------------------------------------- /nacl/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/dirent.h -------------------------------------------------------------------------------- /nacl/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/example.html -------------------------------------------------------------------------------- /nacl/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/ioctl.h -------------------------------------------------------------------------------- /nacl/nacl-config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/nacl-config.rb -------------------------------------------------------------------------------- /nacl/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/package.rb -------------------------------------------------------------------------------- /nacl/pepper_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/pepper_main.c -------------------------------------------------------------------------------- /nacl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/resource.h -------------------------------------------------------------------------------- /nacl/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/select.h -------------------------------------------------------------------------------- /nacl/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/signal.h -------------------------------------------------------------------------------- /nacl/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/stat.h -------------------------------------------------------------------------------- /nacl/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/unistd.h -------------------------------------------------------------------------------- /nacl/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/nacl/utime.h -------------------------------------------------------------------------------- /node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/node.c -------------------------------------------------------------------------------- /node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/node.h -------------------------------------------------------------------------------- /numeric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/numeric.c -------------------------------------------------------------------------------- /object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/object.c -------------------------------------------------------------------------------- /pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/pack.c -------------------------------------------------------------------------------- /parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/parse.y -------------------------------------------------------------------------------- /prelude.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/prelude.rb -------------------------------------------------------------------------------- /probes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/probes.d -------------------------------------------------------------------------------- /probes_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/probes_helper.h -------------------------------------------------------------------------------- /proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/proc.c -------------------------------------------------------------------------------- /process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/process.c -------------------------------------------------------------------------------- /random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/random.c -------------------------------------------------------------------------------- /range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/range.c -------------------------------------------------------------------------------- /rational.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/rational.c -------------------------------------------------------------------------------- /re.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/re.c -------------------------------------------------------------------------------- /regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regcomp.c -------------------------------------------------------------------------------- /regenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regenc.c -------------------------------------------------------------------------------- /regenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regenc.h -------------------------------------------------------------------------------- /regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regerror.c -------------------------------------------------------------------------------- /regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regexec.c -------------------------------------------------------------------------------- /regint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regint.h -------------------------------------------------------------------------------- /regparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regparse.c -------------------------------------------------------------------------------- /regparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regparse.h -------------------------------------------------------------------------------- /regsyntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/regsyntax.c -------------------------------------------------------------------------------- /ruby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ruby.c -------------------------------------------------------------------------------- /ruby_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/ruby_atomic.h -------------------------------------------------------------------------------- /safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/safe.c -------------------------------------------------------------------------------- /sample/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/README -------------------------------------------------------------------------------- /sample/biorhythm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/biorhythm.rb -------------------------------------------------------------------------------- /sample/cal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/cal.rb -------------------------------------------------------------------------------- /sample/cbreak.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/cbreak.rb -------------------------------------------------------------------------------- /sample/clnt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/clnt.rb -------------------------------------------------------------------------------- /sample/coverage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/coverage.rb -------------------------------------------------------------------------------- /sample/dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/dir.rb -------------------------------------------------------------------------------- /sample/drb/dbiff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/dbiff.rb -------------------------------------------------------------------------------- /sample/drb/dlogc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/dlogc.rb -------------------------------------------------------------------------------- /sample/drb/dlogd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/dlogd.rb -------------------------------------------------------------------------------- /sample/drb/dqin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/dqin.rb -------------------------------------------------------------------------------- /sample/drb/dqlib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/dqlib.rb -------------------------------------------------------------------------------- /sample/drb/dqout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/dqout.rb -------------------------------------------------------------------------------- /sample/drb/drbc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/drbc.rb -------------------------------------------------------------------------------- /sample/drb/drbch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/drbch.rb -------------------------------------------------------------------------------- /sample/drb/drbm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/drbm.rb -------------------------------------------------------------------------------- /sample/drb/drbmc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/drbmc.rb -------------------------------------------------------------------------------- /sample/drb/drbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/drbs.rb -------------------------------------------------------------------------------- /sample/drb/gw_ct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/gw_ct.rb -------------------------------------------------------------------------------- /sample/drb/gw_cu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/gw_cu.rb -------------------------------------------------------------------------------- /sample/drb/gw_s.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/gw_s.rb -------------------------------------------------------------------------------- /sample/drb/http0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/http0.rb -------------------------------------------------------------------------------- /sample/drb/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/name.rb -------------------------------------------------------------------------------- /sample/drb/namec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/drb/namec.rb -------------------------------------------------------------------------------- /sample/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/eval.rb -------------------------------------------------------------------------------- /sample/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/export.rb -------------------------------------------------------------------------------- /sample/exyacc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/exyacc.rb -------------------------------------------------------------------------------- /sample/fact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/fact.rb -------------------------------------------------------------------------------- /sample/fib.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/fib.awk -------------------------------------------------------------------------------- /sample/fib.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/fib.pl -------------------------------------------------------------------------------- /sample/fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/fib.py -------------------------------------------------------------------------------- /sample/fib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/fib.rb -------------------------------------------------------------------------------- /sample/fib.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/fib.scm -------------------------------------------------------------------------------- /sample/freq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/freq.rb -------------------------------------------------------------------------------- /sample/from.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/from.rb -------------------------------------------------------------------------------- /sample/fullpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/fullpath.rb -------------------------------------------------------------------------------- /sample/less.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/less.rb -------------------------------------------------------------------------------- /sample/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/list.rb -------------------------------------------------------------------------------- /sample/list2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/list2.rb -------------------------------------------------------------------------------- /sample/list3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/list3.rb -------------------------------------------------------------------------------- /sample/mine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/mine.rb -------------------------------------------------------------------------------- /sample/mkproto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/mkproto.rb -------------------------------------------------------------------------------- /sample/mpart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/mpart.rb -------------------------------------------------------------------------------- /sample/observ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/observ.rb -------------------------------------------------------------------------------- /sample/occur.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/occur.pl -------------------------------------------------------------------------------- /sample/occur.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/occur.rb -------------------------------------------------------------------------------- /sample/occur2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/occur2.rb -------------------------------------------------------------------------------- /sample/philos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/philos.rb -------------------------------------------------------------------------------- /sample/pi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/pi.rb -------------------------------------------------------------------------------- /sample/pty/shl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/pty/shl.rb -------------------------------------------------------------------------------- /sample/rcs.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/rcs.awk -------------------------------------------------------------------------------- /sample/rcs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/rcs.dat -------------------------------------------------------------------------------- /sample/rcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/rcs.rb -------------------------------------------------------------------------------- /sample/rss/blend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/rss/blend.rb -------------------------------------------------------------------------------- /sample/sieve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/sieve.rb -------------------------------------------------------------------------------- /sample/svr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/svr.rb -------------------------------------------------------------------------------- /sample/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/test.rb -------------------------------------------------------------------------------- /sample/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/time.rb -------------------------------------------------------------------------------- /sample/timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/timeout.rb -------------------------------------------------------------------------------- /sample/trojan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/trojan.rb -------------------------------------------------------------------------------- /sample/tsvr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/tsvr.rb -------------------------------------------------------------------------------- /sample/uumerge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sample/uumerge.rb -------------------------------------------------------------------------------- /signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/signal.c -------------------------------------------------------------------------------- /siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/siphash.c -------------------------------------------------------------------------------- /siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/siphash.h -------------------------------------------------------------------------------- /sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sparc.c -------------------------------------------------------------------------------- /spec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/spec/README -------------------------------------------------------------------------------- /spec/default.mspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/spec/default.mspec -------------------------------------------------------------------------------- /sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/sprintf.c -------------------------------------------------------------------------------- /st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/st.c -------------------------------------------------------------------------------- /strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/strftime.c -------------------------------------------------------------------------------- /string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/string.c -------------------------------------------------------------------------------- /struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/struct.c -------------------------------------------------------------------------------- /symbian/pre-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/symbian/pre-build -------------------------------------------------------------------------------- /symbian/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/symbian/setup -------------------------------------------------------------------------------- /template/fake.rb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/template/fake.rb.in -------------------------------------------------------------------------------- /template/id.c.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/template/id.c.tmpl -------------------------------------------------------------------------------- /template/id.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/template/id.h.tmpl -------------------------------------------------------------------------------- /template/ruby.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/template/ruby.pc.in -------------------------------------------------------------------------------- /test/csv/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/csv/base.rb -------------------------------------------------------------------------------- /test/csv/ts_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/csv/ts_all.rb -------------------------------------------------------------------------------- /test/dl/test_dl2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/dl/test_dl2.rb -------------------------------------------------------------------------------- /test/drb/drbtest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/drb/drbtest.rb -------------------------------------------------------------------------------- /test/drb/ut_drb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/drb/ut_drb.rb -------------------------------------------------------------------------------- /test/drb/ut_eq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/drb/ut_eq.rb -------------------------------------------------------------------------------- /test/drb/ut_eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/drb/ut_eval.rb -------------------------------------------------------------------------------- /test/drb/ut_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/drb/ut_port.rb -------------------------------------------------------------------------------- /test/erb/hello.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/erb/hello.erb -------------------------------------------------------------------------------- /test/inlinetest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/inlinetest.rb -------------------------------------------------------------------------------- /test/json/fixtures/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /test/json/fixtures/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /test/json/fixtures/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /test/json/fixtures/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /test/json/fixtures/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /test/json/fixtures/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /test/json/fixtures/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /test/json/fixtures/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /test/json/fixtures/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /test/json/fixtures/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /test/json/fixtures/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /test/json/fixtures/fail25.json: -------------------------------------------------------------------------------- 1 | ["tab character in string "] 2 | -------------------------------------------------------------------------------- /test/json/fixtures/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /test/json/fixtures/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /test/json/fixtures/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /test/json/fixtures/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /test/json/fixtures/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /test/json/fixtures/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /test/json/fixtures/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /test/json/fixtures/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /test/json/fixtures/pass15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /test/json/fixtures/pass16.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \'"] -------------------------------------------------------------------------------- /test/json/fixtures/pass17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /test/mkmf/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/mkmf/base.rb -------------------------------------------------------------------------------- /test/rake/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/rake/helper.rb -------------------------------------------------------------------------------- /test/rdoc/README: -------------------------------------------------------------------------------- 1 | you don't have to 2 | -------------------------------------------------------------------------------- /test/rdoc/hidden.zip.txt: -------------------------------------------------------------------------------- 1 | PK 2 | -------------------------------------------------------------------------------- /test/rdoc/test.txt: -------------------------------------------------------------------------------- 1 | test file 2 | -------------------------------------------------------------------------------- /test/rss/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/rss/dot.png -------------------------------------------------------------------------------- /test/ruby/lbtest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/ruby/lbtest.rb -------------------------------------------------------------------------------- /test/ruby/ut_eof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/ruby/ut_eof.rb -------------------------------------------------------------------------------- /test/rubygems/bad_rake.rb: -------------------------------------------------------------------------------- 1 | exit 1 2 | -------------------------------------------------------------------------------- /test/rubygems/foo/discover.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rubygems/good_rake.rb: -------------------------------------------------------------------------------- 1 | exit 0 2 | -------------------------------------------------------------------------------- /test/rubygems/sff/discover.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/runner.rb -------------------------------------------------------------------------------- /test/scanf/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/scanf/data.txt -------------------------------------------------------------------------------- /test/test_abbrev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_abbrev.rb -------------------------------------------------------------------------------- /test/test_cmath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_cmath.rb -------------------------------------------------------------------------------- /test/test_curses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_curses.rb -------------------------------------------------------------------------------- /test/test_find.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_find.rb -------------------------------------------------------------------------------- /test/test_ipaddr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_ipaddr.rb -------------------------------------------------------------------------------- /test/test_mathn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_mathn.rb -------------------------------------------------------------------------------- /test/test_open3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_open3.rb -------------------------------------------------------------------------------- /test/test_pp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_pp.rb -------------------------------------------------------------------------------- /test/test_prime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_prime.rb -------------------------------------------------------------------------------- /test/test_pstore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_pstore.rb -------------------------------------------------------------------------------- /test/test_pty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_pty.rb -------------------------------------------------------------------------------- /test/test_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_set.rb -------------------------------------------------------------------------------- /test/test_syslog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_syslog.rb -------------------------------------------------------------------------------- /test/test_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_time.rb -------------------------------------------------------------------------------- /test/test_tmpdir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_tmpdir.rb -------------------------------------------------------------------------------- /test/test_tracer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_tracer.rb -------------------------------------------------------------------------------- /test/test_tsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/test/test_tsort.rb -------------------------------------------------------------------------------- /test/webrick/.htaccess: -------------------------------------------------------------------------------- 1 | this file should not be published. 2 | -------------------------------------------------------------------------------- /test/xmlrpc/data/bug_bool.expected: -------------------------------------------------------------------------------- 1 | --- 2 | - true 3 | - false -------------------------------------------------------------------------------- /thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/thread.c -------------------------------------------------------------------------------- /thread_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/thread_native.h -------------------------------------------------------------------------------- /thread_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/thread_pthread.c -------------------------------------------------------------------------------- /thread_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/thread_pthread.h -------------------------------------------------------------------------------- /thread_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/thread_win32.c -------------------------------------------------------------------------------- /thread_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/thread_win32.h -------------------------------------------------------------------------------- /time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/time.c -------------------------------------------------------------------------------- /timev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/timev.h -------------------------------------------------------------------------------- /tool/asm_parse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/asm_parse.rb -------------------------------------------------------------------------------- /tool/bisect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/bisect.sh -------------------------------------------------------------------------------- /tool/enc-unicode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/enc-unicode.rb -------------------------------------------------------------------------------- /tool/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/eval.rb -------------------------------------------------------------------------------- /tool/generic_erb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/generic_erb.rb -------------------------------------------------------------------------------- /tool/id2token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/id2token.rb -------------------------------------------------------------------------------- /tool/ifchange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/ifchange -------------------------------------------------------------------------------- /tool/insns2vm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/insns2vm.rb -------------------------------------------------------------------------------- /tool/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/install-sh -------------------------------------------------------------------------------- /tool/instruction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/instruction.rb -------------------------------------------------------------------------------- /tool/jisx0208.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/jisx0208.rb -------------------------------------------------------------------------------- /tool/make-snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/make-snapshot -------------------------------------------------------------------------------- /tool/mdoc2man.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/mdoc2man.rb -------------------------------------------------------------------------------- /tool/merger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/merger.rb -------------------------------------------------------------------------------- /tool/mkconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/mkconfig.rb -------------------------------------------------------------------------------- /tool/mkrunnable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/mkrunnable.rb -------------------------------------------------------------------------------- /tool/node_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/node_name.rb -------------------------------------------------------------------------------- /tool/parse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/parse.rb -------------------------------------------------------------------------------- /tool/rbinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/rbinstall.rb -------------------------------------------------------------------------------- /tool/rbuninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/rbuninstall.rb -------------------------------------------------------------------------------- /tool/rmdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/rmdirs -------------------------------------------------------------------------------- /tool/rubytest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/rubytest.rb -------------------------------------------------------------------------------- /tool/runruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/runruby.rb -------------------------------------------------------------------------------- /tool/strip-rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/strip-rdoc.rb -------------------------------------------------------------------------------- /tool/update-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/update-deps -------------------------------------------------------------------------------- /tool/vpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/vpath.rb -------------------------------------------------------------------------------- /tool/vtlh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/vtlh.rb -------------------------------------------------------------------------------- /tool/ytab.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/tool/ytab.sed -------------------------------------------------------------------------------- /transcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/transcode.c -------------------------------------------------------------------------------- /transcode_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/transcode_data.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/util.c -------------------------------------------------------------------------------- /variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/variable.c -------------------------------------------------------------------------------- /version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/version.c -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/version.h -------------------------------------------------------------------------------- /vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm.c -------------------------------------------------------------------------------- /vm_backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_backtrace.c -------------------------------------------------------------------------------- /vm_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_core.h -------------------------------------------------------------------------------- /vm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_debug.h -------------------------------------------------------------------------------- /vm_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_dump.c -------------------------------------------------------------------------------- /vm_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_eval.c -------------------------------------------------------------------------------- /vm_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_exec.c -------------------------------------------------------------------------------- /vm_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_exec.h -------------------------------------------------------------------------------- /vm_insnhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_insnhelper.c -------------------------------------------------------------------------------- /vm_insnhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_insnhelper.h -------------------------------------------------------------------------------- /vm_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_method.c -------------------------------------------------------------------------------- /vm_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_opts.h -------------------------------------------------------------------------------- /vm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vm_trace.c -------------------------------------------------------------------------------- /vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/vsnprintf.c -------------------------------------------------------------------------------- /win32/Makefile.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/Makefile.sub -------------------------------------------------------------------------------- /win32/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/README.win32 -------------------------------------------------------------------------------- /win32/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/configure.bat -------------------------------------------------------------------------------- /win32/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/dir.h -------------------------------------------------------------------------------- /win32/enc-setup.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/enc-setup.mak -------------------------------------------------------------------------------- /win32/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/file.c -------------------------------------------------------------------------------- /win32/ifchange.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/ifchange.bat -------------------------------------------------------------------------------- /win32/makedirs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/makedirs.bat -------------------------------------------------------------------------------- /win32/mkexports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/mkexports.rb -------------------------------------------------------------------------------- /win32/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/resource.rb -------------------------------------------------------------------------------- /win32/rm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/rm.bat -------------------------------------------------------------------------------- /win32/rmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/rmall.bat -------------------------------------------------------------------------------- /win32/rmdirs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/rmdirs.bat -------------------------------------------------------------------------------- /win32/rtname.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/rtname.cmd -------------------------------------------------------------------------------- /win32/setup.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/setup.mak -------------------------------------------------------------------------------- /win32/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/stub.c -------------------------------------------------------------------------------- /win32/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/win32.c -------------------------------------------------------------------------------- /win32/winmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/ruby/HEAD/win32/winmain.c --------------------------------------------------------------------------------