shi-mo (Yoshifumi Shimono)
- Login: shi-mo
- Email: yoshifumi.shimono@gmail.com
- Registered on: 11/07/2012
- Last sign in: 11/16/2012
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/14/2012
-
07:38 PM Ruby Bug #7301: URI::FTP.new2()の引数typecodeを省略するとNoMethodErrorが発生します。
- 後から気付いたのですが、引数typecodeを与えても例外が発生します。
----------------------------
$ cat new2_with_typecode.rb
# encoding: utf-8
require 'uri'
URI::FTP.new2('anonymous', 'anonymous', 'ftp.ubuntu.com', 21, '/', 'a')
$ ruby -v new2_with_typeco...
11/07/2012
-
06:34 PM Ruby Bug #7301 (Closed): URI::FTP.new2()の引数typecodeを省略するとNoMethodErrorが発生します。
- URI::FTP.new2()の引数typecodeを省略するとNoMethodErrorが発生します。
----------------------------
$ cat nil-typecode.rb
# encoding: utf-8
require 'uri'
URI::FTP.new2('anonymous', 'anonymous', 'ftp.ubuntu.com', 21, '/')
$ ruby -v nil-typecod...