Activity
From 01/26/2013 to 02/01/2013
02/01/2013
-
11:57 PM Bug #7750: GC中にオブジェクトが割り当てられる
- OSはWindows8で、CPUは、Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz 3.30GHzです。5分程度でスクリプト自体は死にます。再度手元で、10回程度実行してみたところ前述したメッセージが出ませんでした。すいません。
-
11:52 PM Bug #7770 (Closed): rand(range) is not document
- Random#rand(range) is written in RDoc of random_rand, but rand(range) is not written in RDoc of rb_f_rand.
-
11:05 PM Bug #7768 (Closed): Inherited Array class missing - This issue was solved with changeset r39004.
Roman, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
* array.c (rb_ary_dup): make returned array the same class as th... -
09:56 PM Bug #7768: Inherited Array class missing - =begin
Looks like a regression introduced in r26987
=end -
09:43 PM Bug #7768 (Closed): Inherited Array class missing
- Hello. I apologize if I missed something.
I found strange behavior in ruby 1.9:
```ruby
class Custom < Array; end
Custom.new(0){|i| i + 1}.uniq.class # => Array
Custom.new(2){|i| i + 1}.uniq.class # => Custom
```
while in 1... - 10:46 PM Revision f810d180 (git): * proc.c (proc_curry): Fix arity check [Bug #5747]
- * test/ruby/test_proc.rb: Test for above
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 10:46 PM Revision 83610815 (git): * proc.c: Add {*}_min_max_arity and refactor.
- [Bug #7765]
* test/ruby/test_proc.rb: Fix wrong test
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39007 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:59 PM Feature #7767: Tempfileで自動的にファイルを削除する
- 2013/2/1 kyanagi (Kouhei Yanagita) <redmine@ruby-lang.org>:
>
> しかし、Tempfile.openにブロックを渡すと自動的にcloseするところまではやってくれるのに、
> 削除をわざわざ明示的に書かないといけないというのは少し残念な気もします。
>
> Tempfile.openの類推で、ブロックを抜けると自動的にclose!してくれるメソッドがあると、
> 削除に気を使わなくて... -
09:27 PM Feature #7767 (Closed): Tempfileで自動的にファイルを削除する
- ソースコードのコメント(tempfile.rbのGood practicesの項)にも書かれている通り、
Tempfileは使用後、明示的に削除することが推奨されています。
しかし、Tempfile.openにブロックを渡すと自動的にcloseするところまではやってくれるのに、
削除をわざわざ明示的に書かないといけないというのは少し残念な気もします。
Tempfile.openの類推で、ブロックを抜けると自動的にclose!してくれるメソッドがあると、
... -
09:07 PM Bug #7766: Marshal.dump corrupts Hash data when serializing - =begin
Does it only corrupt the output, or does it break the actual Hash object passed to it?
=end -
12:57 PM Bug #7766 (Closed): Marshal.dump corrupts Hash data when serializing
- =begin
Marshal.dump seems to corrupt a Hash object during serialization.
The problem is that this does not happen when the affected Hash is serialized by itself but only (as far as I could see) when it's part of a larger object.
Wor... -
08:29 PM Bug #7752: Rational/Float/Fixnum/Bignum `.to_s.encoding` is US-ASCII
- On 2013/01/31 18:07, coffeejunk (Maximilian Haack) wrote:
>
> Issue #7752 has been updated by coffeejunk (Maximilian Haack).
>
>
> The only problem I see is that ruby is lying to the user.
There is 0% lying if one claims ... -
03:17 PM Bug #7752 (Rejected): Rational/Float/Fixnum/Bignum `.to_s.encoding` is US-ASCII
- On current policy, strings which always include only US-ASCII characters are US-ASCII.
If there is a practical issue, I may change the policy in the future.
Note that US-ASCII string is faster than UTF-8 on getting length or index ac... - 03:46 PM Revision 4b4d889f (git): * 2013-02-02
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39006 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 03:46 PM Revision ba5ff937 (git): * marshal.c: add security considerations to marshal overview, refer to
- overview from Marshal.load documentation [#7759]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39005 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:19 PM Feature #7763 (Assigned): add Win32::Registry#values
-
02:31 AM Feature #7763 (Closed): add Win32::Registry#values
- hello.
In today's Win32::Registry objects, we have
#num_keys, #keys, #num_values
(and no #values method, but there is an #each_value method and #each_key method).
So this is a feature request for it to be added. I suppose it ... -
02:47 PM Feature #6626: Readline.delete_text
- feature requestだと思うのでnext minorにしておきます。
-
02:44 PM Bug #6332 (Feedback): Error compiling readline due username_completion_function being undeclared (GCC 4.6)
- luislavena (Luis Lavena) wrote:
> Attempting to compile trunk (r35415) against GCC 4.6 (4.6.3, OSX 10.6, MacPorts provided) generates the following failure:
Could you attach ext/readline/{mkmf.log,extconf.h}?
-
02:37 PM Bug #7397 (Closed): Fix detection of RL_PROMPT_*_IGNORE macros
- This issue was solved with changeset r39002.
Zachary, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
* ext/readline/extconf.rb, ext/readline/readline.c: check
RL... - 02:05 PM Revision 86aa98fe (git): * array.c (rb_ary_dup): make returned array the same class as the original
- array [Bug #7768] [ruby-core:51792]
* test/ruby/test_array.rb (class TestArray): add test
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39004 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:35 AM Revision 3fe93956 (git): marshal.c: prohibit_ivar
- * marshal.c (r_object0): prohibit setting instance variables of
exising class/module.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
05:38 AM Bug #7765 (Closed): Proc#arity bug with optional argument
- We have:
Proc.new{|a, b, c, d, e|}.arity # => 5
Matz decided [ruby-core:46515] we also have:
Proc.new{|a, b, c, d, e=0|}.arity # => 4
It looks like we currently have:
Proc.new{|a, b=0, c, d, e|}.arity # => 1, s... -
05:37 AM Revision 46ea3f65 (git): * ext/readline/extconf.rb, ext/readline/readline.c: check
- RL_PROMPT_START_IGNORE and RL_PROMPT_END_IGNORE directly in
readline.c. Patch by Zachary Scott. [Bug #7397] [ruby-core:49561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:50 AM Bug #7172: [[Ruby 1.9:]] fix rbconfig for --enable-load-relative (v2)
- So running:
rvm install ruby-head --debug --movable
Executes:
autoreconf
./configure --disable-install-doc --prefix=/home/mpapis/.rvm/rubies/ruby-head --enable-shared --enable-load-relative --sysconfdir=/etc --with-... - 12:47 AM Revision 8df20dd7 (git): * 2013-02-01
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39001 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:47 AM Revision c58d8c30 (git): fix a typo
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
01/31/2013
-
10:57 PM Feature #5481: Gemifying Ruby standard library
- BTW there should be process in place which ensures, that the libraries are properly versioned, i.e. if something is changed, it cannot have the same version as already released library (see #7761 and #7762).
-
10:52 PM Bug #7762 (Closed): io-console version should be bumped
- The io-console shipped with Ruby 2.0 claims it is version 0.3, although it is definitely different code from io-console 0.3 available on rubygems.org. bigdecimal version should be bumped prior release of Ruby 2.0.0 to prevent confusion.
-
10:08 PM Bug #7752: Rational/Float/Fixnum/Bignum `.to_s.encoding` is US-ASCII
- US-ASCII is a strict subset of UTF-8, so I don't think there's necessarily any lying involved.
-
06:07 PM Bug #7752: Rational/Float/Fixnum/Bignum `.to_s.encoding` is US-ASCII
- The only problem I see is that ruby is lying to the user. It is not severe since, as you said, there are no non-ascii characters in the resulting string, but I think ruby should respect the set encoding.
-
09:55 PM Bug #7759 (Closed): Marshal.load is not documented to be dangerous - This issue was solved with changeset r38999.
Charlie, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
marshal.c: warn against using Marshal.load on untrusted data
... -
11:23 AM Bug #7759: Marshal.load is not documented to be dangerous
- (2013/01/31 8:59), charliesome (Charlie Somerville) wrote:
> Unfortunately, many developers use it inappropriately and unmarshal user input. This can lead to a wide range of vulnerabilities, including remote code execution.
Could... -
11:15 AM Bug #7759: Marshal.load is not documented to be dangerous - > I've thought it's a common sense, isn't it?
You would imagine so, however I have seen a lot of code that does unmarshal untrusted data.
I will send an example to security@ruby-lang.org. Please note that I do not consider this a v... -
11:07 AM Bug #7759: Marshal.load is not documented to be dangerous
- charliesome (Charlie Somerville) wrote:
> Unfortunately, many developers use it inappropriately and unmarshal user input. This can lead to a wide range of vulnerabilities, including remote code execution.
Can't you elaborate it, prob... -
09:53 AM Bug #7759: Marshal.load is not documented to be dangerous
- > Marshal.load is incredibly powerful, and also incredibly dangerous.
>
> Unfortunately, many developers use it inappropriately and unmarshal user input. This can lead to a wide range of vulnerabilities, including remote code execut... -
08:59 AM Bug #7759 (Closed): Marshal.load is not documented to be dangerous - =begin
Marshal.load is incredibly powerful, and also incredibly dangerous.
Unfortunately, many developers use it inappropriately and unmarshal user input. This can lead to a wide range of vulnerabilities, including remote code execut... -
04:58 PM Bug #7722: [rubyspec] failure in core/marshal/dump_spec.rb
- I am not that confident that I understand all the detail, but I vote for drop include_all flags.
Matz.
-
03:59 PM Bug #7760 (Closed): "-\n2000-01-02 03:04:05".to_yaml raise ArgumentError
- 1.9.3's psych raises ArgumentError.
2.0.0's psych doesn't.
% ruby -v -r yaml -e '"-\n2000-01-02 03:04:05".to_yaml'
ruby 1.9.3p374 (2013-01-15 revision 38858) [x86_64-darwin12.2.0]
/Users/kazu/.rbenv/versions/1.9.3-p374/lib/ruby/1.9... - 12:55 PM Revision f8823475 (git): marshal.c: warn against using Marshal.load on untrusted data
- * marshal.c (marshal_load): Add documentation warning against using
Marshal.load on untrusted data [Bug #7759] [ruby-core:51765]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:12 PM Bug #7758: Ruby on Windows crashes when active codepage is codepage 65001 and outputting unicode character
- I confirmed this bug occurs on Windows 7 with ruby 1.9.3p374 and 2.0 trunk.
I tested with MinGW32 gcc compiled version(mingw32) and MSVC++ compiled version(mswin32).
When the windows console font is a console with raster font, this... -
06:18 AM Bug #7758 (Feedback): Ruby on Windows crashes when active codepage is codepage 65001 and outputting unicode character
- Can you tell us more about the specific version of Windows that you're using?
Nowhere in your output says which version of Windows is.
Have you tried this against Ruby 2.0 too?
-
05:22 AM Bug #7758 (Closed): Ruby on Windows crashes when active codepage is codepage 65001 and outputting unicode character
- =begin
I have a script that contains the unicode BOX_DRAWINGS_LIGHT_VERTICAL_AND_RIGHT character (http://www.fileformat.info/info/unicode/char/251c/index.htm). When the console code page is set to 65001 (utf-8), both ruby 1.9.3 p125 and... -
07:33 AM Revision 20af032e (git): parse.y: no assigned but unused warnings in eval
- * parse.y (local_push_gen): no assigned but unused variable warnings
in eval as well as -e. [Feature #7730] [ruby-core:51580]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:08 AM Revision b10e6b69 (git): * test/ruby/test_signal.rb (test_trap_puts): Fix typo. "sync"
- should be "STDOUT.sync".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38997 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:38 AM Revision e56c7878 (git): * string.c (rb_str_aset_m): Documentation for String#[]= fix
- Raises an IndexError if Regexp match is out of range.
Github fixes #243 Patch by Dmtiriy Budnik
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 04:59 AM Revision 625119a3 (git): * 2013-01-31
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:59 AM Revision 4ccfb274 (git): * ext/socket/raddrinfo.c (rsock_unix_sockaddr_len): return
- sizeof(sa_familiy_t) if path is empty. see "Autobind Feature" in
unix(7) for details.
* ext/socket/lib/socket.rb (unix_socket_abstract_name?): treat an
empty path as an abstract name.
* test/socket/test_unix.rb: related test.
git... -
01:23 AM Bug #7757 (Closed): String#start_with? and end_with? should accept Regexp
- Dupe, see #3388, sorry.
Need a ram upgrade. -
01:22 AM Bug #7757 (Closed): String#start_with? and end_with? should accept Regexp
- As suggested by Ilya in #5536, the following should work:
"hello".start_with? /h/ # => true, not a TypeError
-
01:19 AM Bug #5536: String#start_with? and end_with? ignore arguments convertible to a String [PATCH]
- prijutme4ty (Ilya Vorontsov) wrote:
> =begin
> ...
See #3388 for this feature (this issue is closed).
It is the approach I initially took, but building and compiling a Regexp is expensive, and so it should be cached or another way be ... -
12:30 AM Bug #5536: String#start_with? and end_with? ignore arguments convertible to a String [PATCH]
- =begin
Can you please explain, why not just make (({"str".start_with(/s/)})) behave as (({"str".match(/^s/)})) ?
=end
01/30/2013
-
06:41 PM Bug #7703 (Feedback): Segfault in 1.9.3-p362, possibly threads related
- p374 will help you.
-
06:39 PM Bug #7689: Crash @enumerator.so with ruby 1.9.3/thin/RoR 3.2.11
- Use p374 instead of p362.
It's the version for you, I guess. -
06:38 PM Bug #7689 (Feedback): Crash @enumerator.so with ruby 1.9.3/thin/RoR 3.2.11
-
06:09 PM Bug #7750: GC中にオブジェクトが割り当てられる
- とりあえず、現時点ではRubyのどのバージョンでも再現できていません。
が、非常に時間のかかるスクリプトのようですので、そもそも落ちるところまで我慢できずに実行を打ち切ってしまっているため、という感もあります。
参考までに、どのような環境(CPU)でどれくらいの時間でこの現象が起きるのか、教えていただけますか? -
05:08 PM Bug #7276 (Closed): TestFile#test_utime failure
- This issue was solved with changeset r38992.
Jon, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
win32.h: revert r37337
* include/ruby/win32.h (fstat): revert r37... -
04:59 PM Bug #7276: TestFile#test_utime failure
- I don't remember the reason well, probably some mingw failed to link the dll or extension libraries.
But I can't find which failed, so revert it. -
03:04 PM Bug #7725 (Closed): bsearch should return enumerator when called without a block
- Fixed with r38984.
-
03:02 PM Bug #7726 (Closed): bsearch should handle block result in a consistent way
- Fixed with r38986.
-
02:48 PM Bug #7728 (Closed): Range#bsearch on other Numerics?
- Resolved with r38985.
-
01:29 PM Feature #7751: How to encapsulate File.delete and File.rename into one 'transaction'?
- > What a great function! I've confirm it is true.
>
> irb(main):001:0> File.write('src', '000')
> => 3
> irb(main):002:0> File.write('dest', '1111')
> => 4
> irb(main):003:0> File.rename('src', 'dest')
> => 0
> irb(main)... -
10:03 AM Feature #7751: How to encapsulate File.delete and File.rename into one 'transaction'?
- What a great function! I've confirm it is true.
irb(main):001:0> File.write('src', '000')
=> 3
irb(main):002:0> File.write('dest', '1111')
=> 4
irb(main):003:0> File.rename('src', 'dest')
=> 0
irb(main):004:0> File.read('dest')
... -
01:22 PM Feature #7730 (Closed): Top level variables aren't checked for assigned but unused behavior
- This issue was solved with changeset r38982.
Andrew, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
parse.y: warn assigned but unused in toplevel
* parse.y (local... -
01:18 PM Bug #7678 (Closed): $_ and $~ are shared across Fibers halfway
- This issue was solved with changeset r38981.
Nobuyoshi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
cont.c: fiber local svar
* cont.c (cont_restore_thread): sv... -
12:01 PM Revision 1ff38a5b (git): * ext/socket/basicsocket.c (bsock_getsockname): ignore truncated
- part of socket address.
(bsock_getpeername): ditto.
(bsock_local_address): ditto.
(bsock_remote_address): ditto.
* ext/socket/unixsocket.c (unix_path): ditto.
(unix_addr): ditto.
(unix_peeraddr): ditto.
* ext/socket/init.c (c... -
09:53 AM Feature #7525: How to avoid memory leak when something gets wrong and throw exception when using win32api?
- Thank you for the resource release schema!
-
08:53 AM Bug #7756: clang 4.2 sees through UNINITIALIZED_VAR macro, gives warning
- =begin
This patch works:
Index: vm_core.h
===================================================================
--- vm_core.h (revision 38980)
+++ vm_core.h (working copy)
@@ -116,7 +116,7 @@
#endif /* __GNUC__ >= 3... -
05:32 AM Bug #7756: clang 4.2 sees through UNINITIALIZED_VAR macro, gives warning
- Hm, maybe we need another workaround.
Does __attribute__ (unused) works on your compiler?
likes
#ifdef __GNUC__
#define UNINITIALIZED_VAR(x) x __attribute__ (unused) = x
#else
.... -
05:05 AM Bug #7756 (Closed): clang 4.2 sees through UNINITIALIZED_VAR macro, gives warning
- =begin
In clang 3.2, the UNINITIALIZED_VAR macro does not prevent the compiler from producing a warning.
Apple clang 3.2:
$ clang -v
Apple LLVM version 4.2 (clang-425.0.24) (based on LLVM 3.2svn)
Target: x86_64-apple-dar... -
08:08 AM Revision 111b8614 (git): win32.h: revert r37337
- * include/ruby/win32.h (fstat): revert r37337, which uses _fstati64()
instead of fstati64() on mingw32. [Bug #7276]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38992 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:01 AM Bug #7539 (Closed): Misleading error message "can't convert nil into string"
- This issue was solved with changeset r38979.
Chris, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
* object.c: Improve error for failed implicit conversions [Bug #... -
07:00 AM Bug #7724 (Closed): 6 bugs with Range#bsearch over floats
- This issue was solved with changeset r38978.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
* range.c: Fix Range#bsearch for floats [Bug #7724] -
06:30 AM Bug #7474 (Rejected): I am getting undefined symbol: rb_enable_interrupt when running event machine
- No response. I'll close this then.
-
06:30 AM Revision e16b8482 (git): * ext/socket/unixsocket.c (rsock_init_unixsock): use rb_inspect()
- because rb_sys_fail_str() fails if its argument contains NUL.
* test/socket/test_unix.rb: related test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:21 AM Revision 5efb130d (git): vm_dump.c: important message first
- * vm_dump.c (rb_vm_bugreport): show the most important message, Crash
Report log information, first.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38990 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:20 AM Revision e449d06f (git): ChangeLog, range.c: adjust indent and style
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 06:07 AM Revision 69adf990 (git): * array.c (rb_ary_bsearch): Fix r38986 (typo) [Bug #7726]
- * range.c (range_bsearch): ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 06:01 AM Revision a7938af1 (git): * array.c (rb_ary_bsearch): Fix r38986 (missing whitespace)
- * range.c (range_bsearch): ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 06:00 AM Revision 20c0fb69 (git): * array.c (rb_ary_bsearch): Raise TypeError on bad return from block
- * range.c (range_bsearch): ditto
* test/ruby/test_array.rb (class): Test for above
* test/ruby/test_range.rb (class): ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 05:46 AM Revision 00d6bb51 (git): * range.c: Restrict bsearch to integers [#7728]
- * test/ruby/test_range.rb: Test for above
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
05:11 AM Bug #7752: Rational/Float/Fixnum/Bignum `.to_s.encoding` is US-ASCII
- This behavior matches Time#to_s, see #5226
Since there are no non-US-ASCII characters in the result of to_s on Rational, Float, Fixnum or Bignum there should be no problem with the US-ASCII encoding. Can you demonstrate one?
-
01:14 AM Bug #7752 (Rejected): Rational/Float/Fixnum/Bignum `.to_s.encoding` is US-ASCII
- =begin
When converting an instance of Rational/Float/Fixnum/Bignum to a string with the (({.to_s})) method, the resulting string has the encoding US-ASCII. This happens for 1.9.3 as well as 2.0.0rc1.
(({> __ENCODING__}))
(({ => #<En... - 05:11 AM Revision 39048aca (git): * array.c (rb_ary_bsearch): Return enumerator if no block [#7725]
- * range.c (range_bsearch): ditto
* test/ruby/test_array.rb: Test for above
* test/ruby/test_range.rb: ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 04:53 AM Revision ddea0c82 (git): * lib/matrix.rb: Take conjugate for inner product
- [rubyspec:5a01ad5719f2] [ruby-dev:46101]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:48 AM Bug #7755: JSON::Generate#configure's argument conversion
- There's some more unreachable code in ext/json/parser/parser.rl:629
-
04:33 AM Bug #7755 (Closed): JSON::Generate#configure's argument conversion
- I notice a tiny bug in ext/json/generator/generator.c:514
tmp = rb_convert_type(opts, T_HASH, "Hash", "to_hash");
if (NIL_P(tmp)) tmp = rb_convert_type(opts, T_HASH, "Hash", "to_h");
if (NIL_P(tmp)) {
rb_raise(r... -
04:22 AM Revision 71eddb1d (git): parse.y: warn assigned but unused in toplevel
- * parse.y (local_push_gen): warn assigned but unused variables also in
toplevel, except for -e option. [Feature #7730] [ruby-core:51580]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:17 AM Revision 29707c1d (git): cont.c: fiber local svar
- * cont.c (cont_restore_thread): svar should be separate per fibers.
[ruby-core:51331] [Bug #7678]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38981 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:44 AM Bug #7753 (Closed): Module#attr_reader documentation uses an undefined variable
- Current text is:
-- Cut here --
attr_writer(symbol, ...) → nil
Creates an accessor method to allow assignment to the attribute aSymbol.id2name.
-- Cut here --
Note that the signature refers to symbol but the body refers to aSymb... -
03:23 AM Bug #7699: rubyspec failed: BigDecimal#divmod Can be reversed with * and +
- (2013/01/27 15:04), mrkn (Kenta Murata) wrote:
> I cannot reproduce it with ruby 2.0.0dev (2013-01-27 trunk 38957) [x86_64-darwin12.2.0] built by clang.
On my environment (*1), I got this failure sometimes (1 or 2 on 10 times
t...
01/29/2013
- 10:15 PM Revision 3df94d7b (git): * re.c (reg_operand): Simplify and reuse error handling [Bug #7539]
- * test/ruby/test_regexp.rb: Test for above
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 10:00 PM Revision c34e9f23 (git): * object.c: Improve error for failed implicit conversions [Bug #7539]
- * error.c: Adapt rdoc
* test/ruby/test_object.rb: Test for above
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 10:00 PM Revision 115a51f8 (git): * range.c: Fix Range#bsearch for floats [Bug #7724]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38978 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 06:58 PM Revision 996ff132 (git): * 2013-01-30
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 06:58 PM Revision bca54434 (git): * object.c: Fix rdoc typo, patch by Narsimham Chelluri [#7753].
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:25 PM Bug #7635 (Closed): debug_inspector API segfaults when opened from inside an eval frame
- This issue was solved with changeset r38970.
Charlie, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
* vm_backtrace.c: fix issue of rb_debug_inspector_open().
Th... -
04:11 PM Bug #7172 (Feedback): [[Ruby 1.9:]] fix rbconfig for --enable-load-relative (v2)
- How do you run the configure script and which element in RbConfig has prefix expanded?
-
02:53 PM Bug #7678: $_ and $~ are shared across Fibers halfway
- (2013/01/29 14:19), nobu (Nobuyoshi Nakada) wrote:
> I think this is one of undefined behaviors, so it would cause no compatibility issue.
> We can fix it once we decide which is more desirable, shared between fibers or separate per... -
02:19 PM Bug #7678: $_ and $~ are shared across Fibers halfway
- I think this is one of undefined behaviors, so it would cause no compatibility issue.
We can fix it once we decide which is more desirable, shared between fibers or separate per fibers.
-
01:45 PM Bug #7276: TestFile#test_utime failure
- Reverting r37337 works on Windows 8.
I think the only drawback to rb_w32_fstati64 is a little performance loss. -
01:21 PM Bug #7276: TestFile#test_utime failure
- Nobu-san: why was r37337 required and `rb_w32_fstati64` no longer correct?
Heesob: good read. After reverting r37337 as per Hiroshi's comment, I get 0 fails on trunk@38966 (Win7 32bit + mingw-w64 4.7.2) because `fstat` -> `rb_w32_fsta... -
01:09 PM Feature #7751 (Rejected): How to encapsulate File.delete and File.rename into one 'transaction'?
-
12:23 PM Feature #7751: How to encapsulate File.delete and File.rename into one 'transaction'? - File.rename can overwrite the destination file, so your File.delete is not necessary
On Tuesday, 29 January 2013 at 1:15 PM, mghomn (Justin Peal) wrote:
>
> Issue #7751 has been reported by mghomn (Justin Peal).
>
... -
11:15 AM Feature #7751 (Rejected): How to encapsulate File.delete and File.rename into one 'transaction'?
- Following program has a line: File.delete(sql_file) and File.rename(tmp_file, sql_file)
It is not a 'transaction' which is I need. Has Ruby a feature to encapsulate File.delete and File.rename into one 'transaction'?
======
class Stri... -
12:41 PM Revision 64dbc10b (git): * lib/net/http/generic_request.rb (encode_multipart_form_data): remove
- tempfile explicitly.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38975 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
10:32 AM Revision d5b7fc43 (git): * array.c: Improve documentation about
- comparison by hash for concerned methods. [ruby-core:51266]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:30 AM Revision 18a8812e (git): debug: trivial fixes
- * ext/-test-/debug/init.c (Init_debug): use normal module.
* ext/-test-/debug/inspector.c (callback): debug_inspector interfaces
now use long.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
08:58 AM Revision e3f88ac4 (git): test_settracefunc.rb: fix tests
- * test/ruby/test_settracefunc.rb (assert_security_error_safe4): fix
tests to set $SAFE separatedly
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
08:28 AM Revision 68fa2e8c (git): * properties.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:25 AM Revision 18e01f63 (git): * vm_backtrace.c: fix issue of rb_debug_inspector_open().
- The order of making binding should be stack (frame) top to bottom.
[Bug #7635]
And also fix issue of collecting klass. Collecting klass is same
as TracePoint#defined_class.
(previous version, it returns T_ICLASS (internal objects... -
07:51 AM Revision 499ca89e (git): vm_trace.c: TracePoint safe level check
- * vm_trace.c (rb_tracepoint_enable, rb_tracepoint_disable): check safe
level as well as set_trace_func.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:50 AM Revision e26c2bc2 (git): vm_trace.c: trace_func safe level check
- * vm_trace.c (set_trace_func, thread_{add,set}_trace_func_m): check
safe level as well as 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:49 AM Revision b0c4ac77 (git): proc.c: original arity
- * proc.c (rb_mod_method_arity): return original arity of the method if
aliased because of visibility change, like as Method#arity.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:06 AM Revision 2d55537d (git): * test/ruby/test_marshal.rb: remove temporally files early.
- * test/ruby/test_process.rb: ditto.
* test/psych/test_exception.rb: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:58 AM Revision 1d15bbda (git): ChangeLog: remove duplicated entry
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 12:32 AM Revision ae047835 (git): * 2013-01-29
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38964 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:32 AM Revision a1ed445b (git): * ext/socket/socket.c (sock_s_pack_sockaddr_un): calculate the
- correct address length of an abstract socket.
* test/socket/test_unix.rb: related test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
01/28/2013
-
11:45 PM Bug #7750 (Rejected): GC中にオブジェクトが割り当てられる
- 下記が吐き出されたメッセージです。
0062.rb:2: [BUG] object allocation during garbage collection phase
ruby 1.9.3p374 (2013-01-15) [i386-mingw32]
-- Control frame information -----------------------------------------------
c:0005 p:---- s:0012 b:0... -
11:24 PM Bug #7276: TestFile#test_utime failure
- This daylight savings time bug is described at
http://www.codeproject.com/Articles/1144/Beating-the-Daylight-Savings-Time-bug-and-getting
and
http://support.microsoft.com/kb/158588/en-us
The workaround is using the Windows API call... -
05:31 PM Bug #7737: problem with generated rbconfig.rb for Haiku
- Seems RPATHFLAG unnecessary for extconf.rb.
Attaching newer patch. -
05:16 PM Bug #7279 (Feedback): Zlib load error on HP-UX
- =begin
Could you try this patch?
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index c9e738a..fe6f771 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -317,9 +317,9 @@ def link_command(ldflags, opt="", libpath=$DEFLIBPATH|$LIBPATH)
... -
04:11 PM Feature #7748 (Assigned): Contextual send
- =begin
If I write a method that uses #send vs. #public_send, I am making an assumption about how that method is invoked. For example, take the simplest form of such a method:
class String
def send_out(op, *a, &b)
send(o... -
03:54 PM Bug #7743 (Rejected): protected なメソッドを respond_to? で評価した時の結果が 1.9 と異なる
- 了解しました。
よくよく考えてみましたが、変更後の挙動の方が正しいと思いますのでクローズします。
影響のあったライブラリの方を直すことにします。
ご回答ありがとうございます。 -
08:46 AM Bug #7743 (Assigned): protected なメソッドを respond_to? で評価した時の結果が 1.9 と異なる
- hsbt (Hiroshi SHIBATA) wrote:
> 以下のようなコードを 1.9.3 と 2.0.0 で実行した時の結果が異なるようです。
(snip)
> ...
r34582で導入された意図的な変更だと思います。
[ruby-dev:40461]のスレッドで議論されたものです。
呼び出し元のコンテキストにおけるレシーバのクラスをチェックして、そのprotectedメソッド
を呼べるクラスであればtrueを返すのが理想ではないかと思いますが... -
11:55 AM Bug #7482 (Closed): test_system_redirect_win(TestSystem) failure on Windows 8
-
12:32 AM Bug #7482 (Assigned): test_system_redirect_win(TestSystem) failure on Windows 8
-
10:58 AM Bug #4502 (Closed): strange Module.new behaviour
-
10:58 AM Bug #5350 (Closed): WeakRef で謎の NoMethodError
- Please file new ticket for documentation.
-
09:02 AM Revision 616f2c43 (git): vm_backtrace.c: use long
- * vm_backtrace.c (rb_debug_inspector_frame_{class,binding,iseq}_get):
use long as index as well as RARRAY_LEN().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
08:51 AM Revision 43ce5ce1 (git): envutil.rb: no core dump
- * test/ruby/envutil.rb (assert_separately): imply no core dump.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
08:18 AM Feature #7747: Expanded API for Binding semantics
- It should also be possible to implement feature request #6710 with this API. The "isolated" binding mentioned in that request could be implemented as:
```ruby
def isolated_eval(src)
isolated = Binding.new #=> No source binding cre... -
08:08 AM Feature #7747 (Open): Expanded API for Binding semantics
- =begin
Currently, the only way to create a new instance of Binding is to get a copy of the current scope's binding, or ask some other object for its binding. In either case, the binding object returned always has semantics identical to ... -
08:11 AM Feature #7702: Remove Proc#binding
- I should note that this will obviously require much thought and some more research. First big question: how much would break if Proc#binding was removed? How severely, for example, would debugging be effected?
Also, an alternative to ... - 03:34 AM Revision ea632a6d (git): * 2013-01-28
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:34 AM Revision 8477d313 (git): * ext/fcntl/fcntl.c: update document. use "file descriptor" instead
- of "file handle" because it is not used other Ruby documents and
it is confusing with Windows file handle.
correct F_DUPFD behavior.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:19 AM Feature #7745 (Assigned): lib/observer.rb: Observers are compared by identity
- =begin
From ((<github issue 239|URL:https://github.com/ruby/ruby/pull/239>)):
((*Please consider changing @observer_peers to compare_by_identity. This fixes surprising effects when Strings or Arrays are used as observers.*))
I've ... -
02:13 AM Bug #7744 (Closed): Fix signed integer overflows Github #242
- =begin
From ((<github issue 242|URL:https://github.com/ruby/ruby/pull/242>)):
((*Signed integer overflow is undefined behavior in C. Many compilers assume no signed integer overflows and even optimize away overflow checks. The -fno-s...
01/27/2013
-
09:24 PM Bug #7743 (Rejected): protected なメソッドを respond_to? で評価した時の結果が 1.9 と異なる
- 以下のようなコードを 1.9.3 と 2.0.0 で実行した時の結果が異なるようです。
% cat respond_to.rb
class A
def initialize
p respond_to?(:foo)
p respond_to?(:foo, true)
end
protected
def foo
end
end
A.new
実行結果は以下の通りです。
... -
04:58 PM Bug #7482: test_system_redirect_win(TestSystem) failure on Windows 8
- As you can see in http://ci.rubyinstaller.org/job/ruby-trunk-x64-test-all/607/console,
This issues is not solved with changeset r38956.
1) Failure:
test_system_redirect_win(TestSystem) [C:/Users/Worker/Jenkins/workspace/ruby-trunk... -
01:04 PM Bug #7482 (Closed): test_system_redirect_win(TestSystem) failure on Windows 8
- This issue was solved with changeset r38956.
Heesob, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
test_system.rb: fix test
* test/ruby/test_system.rb (TestSyste... -
03:04 PM Bug #7699: rubyspec failed: BigDecimal#divmod Can be reversed with * and +
- I cannot reproduce it with ruby 2.0.0dev (2013-01-27 trunk 38957) [x86_64-darwin12.2.0] built by clang.
-
01:13 PM Revision b2ca2c58 (git): test_system.rb: commit miss
- * test/ruby/test_system.rb (TestSystem#test_system_redirect_win): fix
intentional failure left carelessly. [Bug #7482]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
11:26 AM Feature #4276: Allow use of quotes in symbol syntactic sugar for hashes
- One of the reason I didn't introduce this was, a few bundled scripts had compatibility issue when once I tried.
-
11:10 AM Bug #7441 (Third Party's Issue): Segmentation Fault generated with 1.9.3 installed by library1.8.so.1.8.7
- Ask RVM project about installation problem with RVM.
-
04:04 AM Revision d10cea50 (git): test_system.rb: indent
- * test/ruby/test_system.rb (TestSystem#test_system): adjust indent
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:04 AM Revision ad1715f0 (git): test_system.rb: fix test
- * test/ruby/test_system.rb (TestSystem#test_system_redirect_win): fix
meaningless test. [Bug #7482]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
01/26/2013
-
10:39 PM Bug #7627 (Closed): Instance variables of a Struct object are marshaled even when marshal_dump method is defined.
- This issue was solved with changeset r38952.
Kirill, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
marshal.c: marshal_dump instance varialbes
* marshal.c (w_obje... - 07:18 PM Revision dbf8e164 (git): * 2013-01-27
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 07:18 PM Revision 888ccebb (git): * NEWS: Improve wording
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:03 PM Bug #7742: System encoding (Windows-1258) is not recognized by Ruby to convert back to UTF-8
- Mars (Hong Ha Dang ) wrote:
> > C:/RailsInstaller/scripts/config_check.rb:64:in 'exist?': code converter not
> ...
Yes, windows-1258 (for Vietnamese) is currently not supported. The reason for this is because conversion from windows... -
03:33 PM Bug #7742 (Assigned): System encoding (Windows-1258) is not recognized by Ruby to convert back to UTF-8
- I installed Railsinstaller in win8. After intall complete the screen set to
> configuration Railsinstaller on cmd (step 2). I give user name: DHH Mars and
> ...
> C:\Sites> -
01:48 PM Revision a8d4b22c (git): fix a typo
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:39 PM Revision 3d0786a3 (git): marshal.c: marshal_dump instance varialbes
- * marshal.c (w_object): dump instance varialbes of the result of
marshal_dump not the original object. [ruby-core:51163] [Bug #7627]
* complex.c (nucomp_marshal_dump): need to copy instance variables.
* rational.c (nurat_marshal_dump)... -
09:51 AM Revision 68d131d6 (git): fix typos
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:36 AM Bug #6820 (Closed): Time#to_s on NEWS
- This issue was solved with changeset r38944.
Nobuhiro, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
updating news [Bug #6820] -
07:13 AM Bug #7541: Can't use Ruby 2.0.0 as as BASERUBY
- This appears to be a chicken and egg problem, but I don't have enough information to know how to solve it.
Should RubyGems know not to load when run as BASERUBY? How should RubyGems determine this? -
07:12 AM Revision 2eae39e0 (git): Windows Vista supports __declspec(thread) in dynamic loaded dll, so
- Change the following comment in ChangeLog
to avoid SEGV if win32ole.so loaded with LoadLibrary in Windows Vista
-> to avoid SEGV if win32ole.so loaded with LoadLibrary in Windows XP
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trun... -
07:07 AM Bug #4731 (Assigned): ruby -S irb fails with mingw/msys vanilla builds
- drbrain (Eric Hodel) wrote:
> Luis, Nobu, what is the status of this?
I proposed an alternate rbinstall.rb method in #6769 that will correct this issue.
However, workload has been high and code in rbinstall.rb is not very clear.
-
06:48 AM Bug #4731: ruby -S irb fails with mingw/msys vanilla builds
- Luis, Nobu, what is the status of this?
-
07:03 AM Bug #7482: test_system_redirect_win(TestSystem) failure on Windows 8
- Kosaki-san, can you check this issue?
-
07:02 AM Bug #7318 (Third Party's Issue): activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:1213: [BUG] Segmentation fault
- Marking as third party issue due to lack of feedback from the submitter. No evidence this is a ruby bug has been presented.
-
07:01 AM Bug #7008 (Rejected): rake is crashing when trying to compile ffi gem
- Marking rejected due to lack of feedback from the submitter.
-
07:00 AM Bug #6995 (Rejected): Code converter not found (UTF-8 to EUC-TW)
- Marking rejected due to lack of feedback from the submitter.
-
06:59 AM Bug #6896 (Third Party's Issue): Ruby crash bringing default http://localhost:3000 page
- Marking as third party issue due to lack of feedback from the submitter. There is no evidence presented that this is a ruby bug.
-
06:59 AM Bug #6829 (Rejected): Failure using Win32ole (happens in 1.8.7 and 1.9
- Marking this as rejected due to lack of feedback by the submitter.
-
06:57 AM Bug #6803 (Third Party's Issue): Ruby Interpreter (CUI) 1.9.3p194 [i386-mingw32] has stopped working
- I am marking this is third party issue due to lack of feedback by the author. No evidence of a ruby bug has been presented.
-
06:55 AM Bug #6391 (Assigned): Segment Fault while execute make_encmake.rb for Ruby 1.9.3 P194 ( MinGW64)
- There is feedback on this issue that has not been addressed. Luis, Nobu can you comment?
-
06:53 AM Bug #6281 (Rejected): 1.9.3-p125 crashes when using therubyracer 0.9.10
- There has been no feedback from the submitter so I am marking this as rejected.
-
06:52 AM Bug #5990 (Third Party's Issue): Random Segmentation Fault when running on Linux Fedora
- Due to lack of feedback I'm marking this as third party issue. No mention of a bug in ruby has been made.
-
06:51 AM Bug #4923 (Closed): [ext/openssl] test_ssl.rb: test_client_auth fails
- I am closing this due to lack of feedback and the note of a possible fix above.
-
06:47 AM Bug #5811 (Rejected): Ruby Process Deadlocks With Fork on Mac OS X Lion
- The requested Gemfile was not attached by the submitter so I am rejecting this.
-
06:46 AM Bug #5756 (Rejected): crashs when Twitter.update_with_media with rails
- No response from the submitter after a feedback request so I am rejecting this.
-
06:45 AM Bug #5493 (Rejected): Commit r33357 breaks build on Debian/sparc
- No feedback from the submitter after a failure to reproduce, so I am rejecting this.
-
06:45 AM Bug #5357 (Assigned): Indentation of nested operators should nest
-
06:44 AM Bug #4623 (Rejected): Consistent crash related to action_mailer
- The submitter did not provide a way to reproduce this so I am rejecting it.
-
06:43 AM Bug #4533 (Rejected): rake db:migrate ----Segmentation fault
- Submitter didn't provide a way to reproduce this so I am rejecting it.
-
06:41 AM Bug #6645 (Rejected): Segmentation fault in net/http.rb
- No feedback that allows us to reproduce this so I'm rejecting it.
-
06:19 AM Feature #7654: Add optional code block to IO::readlines
- I think next minor. It is a new feature but trunk is closed for new features.
-
04:36 AM Revision 623f6d66 (git): * ext/fcntl/fcntl.c: Document Fcntl constants
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:58 AM Revision 0051369b (git): * hash.c (rb_env_size): Restored documentation for ENV.size
- * lib/drb/drb.rb: Documented DRb::DRb#run.
* lib/erb.rb (class ERB): Improved documentation of ERb.
* transcode.c: Documented Encoding::Converter constants.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38948 b2dd03c8-39d4-4d8... -
02:31 AM Revision 6048f9a6 (git): * remove trailing spaces.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38947 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:31 AM Revision a110d178 (git): extconf.rb: fix warnings
- * ext/socket/extconf.rb: fix warnings from IN6_IS_ADDR_ macros in
apple's netinet6/in6.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:15 AM Bug #7718 (Closed): test_ioctl_linux fails on PPC and PPC64
- This issue was solved with changeset r38941.
Vit, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
----------
* test/ruby/test_io.rb (test_ioctl_linux): skip if a platform is
... -
01:12 AM Revision 28afe277 (git): * lib/webrick/accesslog.rb: Improved WEBrick documentation.
- * lib/webrick/cgi.rb: ditto.
* lib/webrick/config.rb: ditto.
* lib/webrick/cookie.rb: ditto.
* lib/webrick/httpauth/authenticator.rb: ditto.
* lib/webrick/httpauth/basicauth.rb: ditto.
* lib/webrick/httpauth/digestauth.rb: ditto.
*... -
12:06 AM Bug #7716: Readdressing Autoload
- Priority: High