summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* * test/ruby/test_file.rb (test_*_extended_file): forgot to set mode.usa2008-10-281-13/+13
| | | | | | | | * test/ruby/test_file.rb (test_para_gets_extended_file): output file sould be binmode. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * tool/make-snapshot.rb: merged from ruby_1_9_1.yugui2008-10-282-4/+11
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* merged r19975 and r19978 from ruby_1_9_1 into trunk.yugui2008-10-284-4/+13
| | | | | | | | | * gem_prelude.rb: considers --program-suffix and prefix configure options. * lib/rubygems/defaults.rb: ditto. * test/rubygems/test_gem.rb (@default_dir_re): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * tool/make-snapshot: use String#bytesize.nobu2008-10-282-2/+12
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_file.rb (test_*_extended_file): test in default/text/binaryusa2008-10-281-32/+46
| | | | | | | mode. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_file.rb (test_each_char_extended_file,usa2008-10-281-0/+16
| | | | | | | test_getbyte_extended_file): add tests. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_argf.rb (test_readpartial2): readpartial works just likeusa2008-10-281-0/+2
| | | | | | | binmode, so input of it should be binmode'ed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test_cgi_multipart.rb (_prepare): tempfile should be binmode.usa2008-10-281-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bootstraptest/test_thread.rb: ignore some exceptions.usa2008-10-282-1/+10
| | | | | | | | [ruby-dev:36951] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2008-10-28svn2008-10-281-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/Makefile.sub (RUNRUBY): now ruby requires something fromusa2008-10-282-1/+6
| | | | | | | | gem_prelude, so need to set library path. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_insnhelper.c (vm_yield_setup_args): supports optional parameters.yugui2008-10-273-96/+318
| | | | | | | | | | | | | | Fixed [ruby-core:19503]. * vm_insnhelper.c (vm_yield_setup_block_args): a new function. extracted from vm_yield_setup_args. * vm_insnhelper.c (vm_yield_setup_block_args_complex): ditto. * test/ruby/test_proc.rb: added tests for arguments on a Proc from Kernel#proc called. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/mathn/complex/complex.c: no need to define rb_cComplex becauseusa2008-10-273-0/+12
| | | | | | | | | | | it's already defined at $(srcdir)/complex.c. * ext/mathn/rational/rational.c: no need to define rb_cRational because it's already defined at $(srcdir)/rational.c. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_argf.rb (test_{argf,lineno,lineno2}): don't repeatnobu2008-10-271-16/+17
| | | | | | | comments and expected results. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (load_file): preserves $.. [ruby-dev:36937]nobu2008-10-272-4/+35
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (argf_init): initial value of $. should be 0.nobu2008-10-273-2/+7
| | | | | | | see [ruby-dev:36937]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19964 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/minitest/test_mini_test.rbyugui2008-10-272-2/+12
| | | | | | | | | | | (test_assert_raises_triggered_different): the test failed when a file path in the backtrace contontains something except [\w\/\.], e.g. hyphen, Japanese characters or backslash. * test/minitest/test_mini_test.rb (test_assert_raises_triggered_subclass): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/minitest/test_mini_test.rb: fixed that r19958 madeyugui2008-10-272-2/+9
| | | | | | test-all fail when the ruby was built at $(srcdir). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/envutil.rb: reverted the changeset 19948 because ityugui2008-10-273-2/+9
| | | | | | | | concealed unexpected behaviours of ruby. * test/ruby/test_io.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: added missing timestampsyugui2008-10-271-0/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/nkf/nkf.c (rb_nkf_convert): should specify type of variable.kazu2008-10-272-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/minitest/test_mini_test.rb (test_filter_backtrace):yugui2008-10-272-11/+22
| | | | | | | | | fixed failure on Ruby built at out of $(srcdir). * test/minitest/test_mini_test.rb (test_Filter_backtrace_unit_starts): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fix typokazu2008-10-271-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (read_all): the 3rd argument maybe Qnil.usa2008-10-272-1/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/nkf/test_nkf.rb: add a test for [ruby-dev:36909].mame2008-10-262-0/+10
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2008-10-27svn2008-10-261-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/nkf/nkf.c (rb_nkf_convert): avoid GC.naruse2008-10-262-1/+7
| | | | | | reported in [ruby-dev:36909] and patched [ruby-dev:36941] by mame. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * set svn:ignore property to ext/mathn/complex and ext/mathn/rationalmame2008-10-260-0/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: fixed indentation.nobu2008-10-261-42/+44
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/json/test_json.rb: remove dependency on permutation gem.mame2008-10-262-21/+17
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gem_prelude.rb: disables debug and verbose flags to suppress failurenobu2008-10-262-13/+22
| | | | | | | messages. interpolation does not occur inside single quotes. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/envutil.rb (assert_in_out_err): disables builtin rubygemsnobu2008-10-263-3/+8
| | | | | | | | | to get rid of the interference. * test/ruby/test_io.rb (ruby): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19948 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/io/wait/{extconf.rb,wait.c}: needs sys/ioctl.h for fcntl onnobu2008-10-263-2/+9
| | | | | | | cygwin. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19947 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/etc/etc.c (sGroup): getgrent may not be available.nobu2008-10-262-4/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * thread.c (blocking_region_{begin,end}): declared as inline.nobu2008-10-264-8/+14
| | | | | | | | | * util.c (freedtoa): used only when MULTIPLE_THREADS is not defined. * win32/win32.c (rb_w32_pipe): serial is DWORD. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * missing/vsnprintf.c (BSD__sfvwrite): constified.nobu2008-10-261-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (read_all): use the given buffer to read when needs readconv.nobu2008-10-262-1/+7
| | | | | | | | based on the patch by wanabe <s.wanabe AT gmail.com> at [ruby-dev:36931]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19943 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* properties.nobu2008-10-260-0/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19942 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to RubyGems 1.3.1 r1909.drbrain2008-10-2575-407/+427
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Imported minitest 1.3.0 r4429. Fixes issues reported by akira and noburyan2008-10-254-32/+67
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19940 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in ($MANTYPE): followed ruby.1, which had moved.yugui2008-10-254-3/+11
| | | | | | | | | * instruby.rb (:man): ditto. * mdoc2man.rb: fixed for the case Xr with 2 arguments. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * man/irb.1: new manual page.yugui2008-10-252-0/+131
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * man/ruby.1: moved into man/. added some descriptions.yugui2008-10-254-3/+58
| | | | | | | | * man/goruby.1: new file. * instruby.rb (:man): followed ruby.1. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19937 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2008-10-26svn2008-10-251-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.1 (ENVIRONMENT): refered gem help.yugui2008-10-251-1/+9
| | | | | | (REPORTING BUGS): renamed the section BUGS. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19935 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gc.c (gc_profile_result): bug fix. The millisecond is 1/1000.nari2008-10-252-3/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_proc.rb (test_proc_args_unleashed): test fornobu2008-10-252-0/+18
| | | | | | | | | [ruby-core:19485]. * test/ruby/test_yield.rb (test_block_args_unleashed): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (usage): updated the description of -E option.yugui2008-10-252-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/csv.rb: Fixed a bug in read_to_char() that would slurpjeg22008-10-255-14/+33
| | | | | | | | | | | | | whole files if the encoding was invalid. It will now read up to 10 bytes ahead to find a valid character boundary or give up. [ruby-core:19465] * test/csv/test_features.rb, test/csv/test_table.rb, test/csv/test_row.rb: Loosened some tests to check for a compatible? Encoding instea of an exact Encoding. [ruby-core:19470] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Import RDoc 2.2.2 r192drbrain2008-10-2422-54/+115
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e