General

Profile

felixbuenemann (Felix Bünemann)

  • Login: felixbuenemann
  • Email: [email protected]
  • Registered on: 01/06/2014
  • Last sign in: 11/12/2020

Issues

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

Activity

02/29/2016

09:34 PM Ruby Feature #12115: Add Symbol#call to allow to_proc shorthand with arguments
Although I don't understand the Japanese, the linked issue, with a similar syntax to what Shel vacu proposed above, was rejected by Matz. So probably not too much hope on getting this into core… felixbuenemann (Felix Bünemann)

02/26/2016

06:03 PM Ruby Feature #12115: Add Symbol#call to allow to_proc shorthand with arguments
Edited to remove `**kwargs` argument I added, which would require checking if the called method supports them. felixbuenemann (Felix Bünemann)
05:51 PM Ruby Feature #12115 (Open): Add Symbol#call to allow to_proc shorthand with arguments
I am a great fan of the `Symbol#to_proc` shorthand when mapping or reducing collections:
```ruby
[1,2,16].map(&:to_s)
=> ["1", "2", "16"]
[1,2,16].reduce(&:*)
=> 32
```
I often wish it would be possible to pass an argument to ...
felixbuenemann (Felix Bünemann)

01/05/2016

01:48 PM Ruby Bug #11930: Segmentation Fault in gc_mark_ptr in 2.3.0p0
I think I'm getting the same crash in `gc_mark_ptr` with `ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15]` when using the pg 0.18.4 gem and activerecord 4.2.4:
```
(lldb) target create "/Users/felix/.rvm/rubies/ruby-2.3.0/...
felixbuenemann (Felix Bünemann)

08/12/2015

11:08 AM Ruby Bug #11380: Parser regression in 2.3?
Thank you!
Please don't forget to also backport to ruby_2_1, because #11107 which caused this regression was backported to ruby_2_1 aswell.
felixbuenemann (Felix Bünemann)

08/04/2015

03:06 AM Ruby Bug #11380: Parser regression in 2.3?
This still needs to be backported. felixbuenemann (Felix Bünemann)

07/23/2015

07:40 PM Ruby Bug #11389: Regression in method parameter parsing
Thank you, it works fine now! <3 felixbuenemann (Felix Bünemann)

07/22/2015

10:49 PM Ruby Bug #11389: Regression in method parameter parsing
This bug is a duplicate of #11380. felixbuenemann (Felix Bünemann)
10:31 PM Ruby Bug #11389: Regression in method parameter parsing
The issue can be fixed by reverting r50402 which was introduced by #11107. felixbuenemann (Felix Bünemann)
06:00 PM Ruby Bug #11389 (Closed): Regression in method parameter parsing
There is a regression in parameter parsing with current ruby-2.2-head and ruby-head:
```ruby
# ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-darwin14]
def foo fn, options, &block; end
=> :foo
foo -> {}, foo: :bar do; end
=> n...
felixbuenemann (Felix Bünemann)

Also available in: Atom