ebouchut (Eric Bouchut)
- Login: ebouchut
- Registered on: 10/28/2012
- Last sign in: 05/22/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
08/23/2013
-
06:08 PM Ruby Bug #8815 (Rejected): Enumerable.drop_while returns an Enumerator. Calling next twice on the Enumerator raises StopIteration even if there are still items available
- I have an enumerable (array) that contains 3 items
[1, 2, 3].
I send drop_while without a block to this array to get an Enumerator.
enumerator = [1, 2, 3].drop_while
When I call next twice on the Enumerator
enumerator.next ...
10/29/2012
-
01:53 AM Ruby Bug #7230 (Closed): Updating Documentation for Dir::glob
- Hi
I updated the Dir:glob documentation (pattern section, backslash subsection).
I escaped the backslash character and surrounded code examples with code tags when they were missing.
This is my first contribution to the Ruby docume...