General

Profile

jaredbeck (Jared Beck)

  • Login: jaredbeck
  • Email: jared@jaredbeck.com
  • Registered on: 04/22/2013
  • Last sign in: 05/05/2022

Issues

open closed Total
Assigned issues 0 0 0
Reported issues 1 4 5

Activity

05/05/2022

08:18 PM Ruby Feature #14602: Version of dig that raises error if a key is not present
I personally don't mind `dig!`. I interpret the `!` as a general sign of caution, rather than some meaning specific to data structures (ie. self-modification). But, if we can't have `dig!`, how about `fetch_dig` or `dig_fetch`?
Whatever...
jaredbeck (Jared Beck)

07/16/2021

06:40 AM Ruby Revision bbaebbf5 (git): [rubygems/rubygems] Fix contradictory message about deletion of default gem
[Fixes #4733]
https://github.com/rubygems/rubygems/commit/fce7f3eb7d
jaredbeck (Jared Beck)

04/15/2021

07:31 PM Ruby Bug #17805: Segmentation fault at 0x0000000000000010 ruby 2.7.3p183
peterzhu2118 (Peter Zhu) wrote in #note-1:
> Thank you for the report. It's a duplicate of #17780 which has been flagged for backport. In the meantime you can use 2.7.2 or build from the [2.7 branch](https://github.com/ruby/ruby/tree/ru...
jaredbeck (Jared Beck)
06:07 PM Ruby Bug #17805 (Closed): Segmentation fault at 0x0000000000000010 ruby 2.7.3p183
jaredbeck (Jared Beck)

03/27/2018

08:32 PM Ruby Feature #7511: short-circuiting logical implication operator
The spirit of ruby is to make programmers happy. So, if logical implication would make programmers happy, we must consider it. It doesn't matter if it's infrequently used. For example, `Array#zip` is rarely used, but it makes me very hap... jaredbeck (Jared Beck)

05/15/2017

03:55 PM Ruby Feature #13516: Improve the text of the circular require warning
Thanks for the response, Robert. It would be great if the error message provided that level of detail. However, that may be difficult to implement. So, maybe we should focus on simply improving the text of the existing warning. My goal i... jaredbeck (Jared Beck)

04/27/2017

10:41 PM Ruby Feature #13516 (Assigned): Improve the text of the circular require warning
The warning currently reads:
`loading in progress, circular require considered harmful - /my/file.rb`
I think it would be more helpful like:
`Circular require: Loading of /my/file.rb is already in progress, but require was calle...
jaredbeck (Jared Beck)

05/01/2015

12:43 AM Ruby Bug #8308: Segmentation fault
Feel free to close this. I haven't used ruby 2.0 in a while. All of my projects are using 2.1 or 2.2.
I don't think I have access to close this.
jaredbeck (Jared Beck)

01/12/2015

06:23 PM Ruby Feature #3187: Allow dynamic Fiber stack size
~~~
Ruby 2.0 already has
RUBY_VM_FIBER_VM_STACK_SIZE
RUBY_FIBER_MACHINE_STACK_SIZE
~~~
Are these environment variables to configure the stack size? Is there documentation on usage? (I mean, what are the units? bytes, kb?) Is th...
jaredbeck (Jared Beck)

11/16/2014

02:22 PM Ruby Bug #10475: Array#flatten should not accept a nil argument
`flatten` also accepts `Float` values, apparently using `to_i` (aka. `truncate`) to convert to `Integer`.
arr.flatten(0.9)
=> [1, [2, [3, [4, 5]]]]
arr.flatten(1.1)
=> [1, 2, [3, [4, 5]]]
arr.flatten(-0.9)
...
jaredbeck (Jared Beck)

Also available in: Atom