rubyhack (first last)
- Login: rubyhack
- Registered on: 12/02/2012
- Last sign in: 08/25/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
12/24/2012
-
06:12 PM Ruby Feature #7526: infinit loop in Registry::each_value
- rubyhack (first last) wrote:
> the correction :
> ...
that is: add only the line: "index += 1" to the lib and the bug is fixed
12/06/2012
-
08:04 PM Ruby Feature #7526 (Closed): infinit loop in Registry::each_value
- in win32/registry.rb :
begin
type, data = read(subkey)
rescue Error
next
end
the correction :
rescue Error
index += 1
next
end
I think that usin...
12/03/2012
-
04:21 PM Ruby Bug #7497: net/ftp.rb can't list ftp sites behind a firewall
- thank you zzak.
sorry again , any one can close this issue, after downloading 1.8.6 I realized that the attr_accessor :passive
is in the FTP class. so this is a good lesson as a start up to verify that it is undead a bug before reporti...
12/02/2012
-
08:03 PM Ruby Bug #7497: net/ftp.rb can't list ftp sites behind a firewall
- sorry
Category: lib
and the correction is better writen as :
attr_accessor :passive
-
07:54 PM Ruby Bug #7497 (Rejected): net/ftp.rb can't list ftp sites behind a firewall
- net/ftp.rb can't list ftp sites behind a firewall ,
to solve this issue ftp passive mode must be used , the support is in the code but needs means to activate it !
so add to the FTP class attributes to change and access passive state :...