dearblue (宗介 相良)
- Login: dearblue
- Email: snowjail@gmail.com
- Registered on: 11/08/2011
- Last sign in: 02/26/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/23/2023
-
07:52 PM Ruby Revision 062d6050 (git): [rubygems/rubygems] Ignore non-tar format `.gem` files during search
- Previously, `rake install` or `rake update` would fail if there was a non-tar format `.gem` file in the current working directory.
https://github.com/rubygems/rubygems/commit/f562788f1d
04/22/2014
-
11:51 AM Ruby Bug #9769 (Closed): un-infection in StringIO#write
- StringIO#write において、汚染された文字列を与えても汚染状態が伝播しません。
* 文字列の拡張を伴わない書き込み (こちらは伝播する)
$ ruby -r stringio -e 'str = "abcdefg"; sio = StringIO.new(str); sio << "hijklmn".taint; p str: str.tainted?, sio: sio.tainted?'
{:str=>true, :sio=>false}
...