denofevil (Dennis Ushakov)
- Login: denofevil
- Email: dennis.ushakov@jetbrains.com
- Registered on: 11/02/2012
- Last sign in: 06/16/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/17/2014
-
03:46 PM Ruby Bug #10511: fix for #9940 causes dramatic performance regression
- I was not able to achieve 4x on a simple benchmark, but the difference is quite big:
require 'benchmark'
N = 10000
RECURSION = 1000
def recurse(i)
recurse(i - 1) if i > 0
end
TraceP...
11/20/2012
-
09:04 PM Ruby Bug #7214: Ruby 2.0 breaks support for some debugging tools
- luislavena (Luis Lavena) wrote:
> AFAIK: debugger gem was a response to many of the installation issues
> ...
Actually link that I gave is sources of ruby-debug-base19x. These are both forks for the same reasons =)
ruby-debug-base19x... -
05:46 PM Ruby Bug #7214: Ruby 2.0 breaks support for some debugging tools
- Yes, sure: https://github.com/ruby-debug/ruby-debug-base19
11/19/2012
-
11:43 PM Ruby Bug #7214: Ruby 2.0 breaks support for some debugging tools
- I will try to rewrite ruby-debug-base for 2.0 using your fork during this week and will post about results
-
07:32 PM Ruby Bug #7259: ruby-debug-base19x does not compile on 2.0.0-head
- Looks like it, feel free to close this one as a duplicate
11/02/2012
-
02:07 AM Ruby Bug #7259 (Closed): ruby-debug-base19x does not compile on 2.0.0-head
- I'm trying to make ruby-debug-base19x used by IDE debugger work on 2.0.0-head. I've managed to get it mostly compiling (latest sources are at https://github.com/ruby-debug/ruby-debug-base19) and found one major problem: rb_vm_get_sourcel...