schmurfy (Julien A)
- Login: schmurfy
- Email: schmurfy@gmail.com
- Registered on: 05/18/2011
- Last sign in: 07/15/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/15/2013
-
08:12 PM Ruby Feature #7688: Error hiding with rb_rescue() on Comparable#==, #coerce and others
- I just got bitten by this problem and I agree there should not be any hidden rescue misleading you on what is really happening in your code, that's an horrible idea....
As pointed you don't usually except an exception to be raised anywh...
03/01/2013
-
09:56 PM Ruby Feature #3944: Add Fiber#root? method
- what is Next Major ? 3.0 ???
The issue was more than 2 years ago, after looking at the code the implementation should not be a challenge and yet nothing.
it is so depressing watching the ruby redmine seriously...
12/16/2011
-
06:48 PM Ruby Bug #5750: Thread.current local-variables behavior
- any news on this ?
This documentation bug is here since 1.9 was first released from what I understand so I think it would be rather urgent to fix it, for me a documentation is even worse than a bug in the codebase since it leads you to ...
12/12/2011
-
11:58 PM Ruby Bug #5750: Thread.current local-variables behavior
- Although I consider this behavior (and the reason why it was done) completely absurd, how about at least changing the documentation to mention the real behavior of the supposedly thread-local storage ?
Replacing thread-local by fiber-lo... -
08:26 PM Ruby Bug #5750 (Closed): Thread.current local-variables behavior
- Hi, I stumbled upon something which for me is a bug and wanted to check if it is working as intended or not:
Thread.current[:a] = 1
p Thread.current[:a] # => 1
Fiber.new do
p Thread.current[:a] # => nil
end....
05/18/2011
-
08:02 PM Ruby Feature #4569: Replace IPAddr with IPAddress
- Hi,
I just came across this issue and had a question about it: why not remove things from core instead of adding new ones ?
I love the IPAddress gem and I already use it on many projects but why including it in core ? (if anyone is u...