Lavir_the_Whiolet (Lavir the Whiolet)
- Login: Lavir_the_Whiolet
- Email: Lavir.th.Whiolet@gmail.com
- Registered on: 10/06/2008
- Last sign in: 03/31/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 4 | 4 |
Activity
03/31/2013
-
04:20 AM Ruby Feature #8190 (Rejected): Truly parallel assignment
- =begin
i = 0
s = [1,2,3]
i, s[i] =s[i], 7
p s
#=> [1, 7, 3]
s is expected to be [7, 2, 3].
=end
09/04/2012
-
06:44 PM Ruby Bug #6978 (Closed): RDoc does not convert <Ruby_element>@<paragraph_name> to hyperlinks
- With attached "test.rb" I issue command "rdoc test.rb" and gets some HTML doc. In the HTML doc I expect to see "Test@Some+Paragraph" replaced with a hyperlink with text "Some Paragraph at Test" and reference to "Some Paragraph" paragraph...
11/14/2011
-
08:05 PM Ruby Feature #5630 (Rejected): Missing custom transfer modes in Net::FTP
- Net::FTP supports binary and text transfer modes only but some systems support another modes. For example, EBCDIC mode ("TYPE E") in IBM mainframes.
Custom transfer modes are needed to be supported by Net::FTP.
10/06/2008
-
06:26 AM Ruby Feature #615 (Rejected): "with" operator
- =begin
"with" operator is required. It must work like an ordinary method which gets one arguemnt and a block. All expressions in the block are not required to point the argument explicitly; all method calls are related to the argument ...