General

Profile

bradleybuda (Bradley Buda)

Issues

open closed Total
Assigned issues 0 0 0
Reported issues 0 2 2

Activity

02/12/2018

09:04 PM Ruby Feature #14468 (Rejected): Add Proc#dig
Since Proc already responds to [], it would be cool if Procs could participate in a recursive dig. Like this:
Current Behavior:
~~~
obj = [
0,
{
a: ->(x) { x * 2 },
b: "c"
},
]
obj[1][:a][4] == 8 # true
obj...
bradleybuda (Bradley Buda)

11/25/2013

02:58 PM Ruby Bug #9150 (Closed): Segfault in case statement execution, possibly related to refinements
This code consistently segfaults in 2.0.0p353:
require 'active_support/all'
case 3600
when 1.week then true
end
This is after `gem install activesupport --version=3.2.13`. The code works fine in 2.0.0p247.
I ran a git bisec...
bradleybuda (Bradley Buda)

Also available in: Atom