bitsweat (Jeremy Daer)
- Login: bitsweat
- Email: [email protected]
- Registered on: 06/09/2008
- Last sign in: 08/10/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 11 | 11 |
Activity
07/11/2024
-
08:03 AM Ruby Revision e1a034cb (git): IBM864 single-byte transcoding (#10518)
- Include € euro sign from CCSID 864
11/11/2016
-
10:16 PM Ruby Feature #12902: How about Enumerable#sum uses initial value rather than 0 as default?
- If we treated the first argument to `#sum` as the additive identity instead of "initial element," then it'd be very clear what to expect:
When there are no elements in the Enumerable, return the identity.
That works nicely for summ...
05/17/2016
-
12:19 AM Ruby Bug #9082: popen3 hangs when stderr gets lots of output
- Note you can use `Open3.capture3` to safely read stdout and stderr without doing `popen3` + `IO.select` yourself.
Internally, this uses separate threads to read stderr & stdout and to wait for the child process to finish: https://gith...
10/07/2014
-
06:37 PM Ruby Feature #9112: Make module lookup more dynamic (Including modules into a module after it has already been included)
- See #1586
~~~
1. allow multiple inclusion
1. propagate when a module includes a module
Both have been (basically) accepted
~~~
08/13/2014
-
02:15 AM Ruby Bug #9800: Ship 2.1.2 with GC_HEAP_OLDOBJECT_LIMIT_FACTOR of 1.3
- I'm running Ruby 2.1.2 with `GC_HEAP_OLDOBJECT_LIMIT_FACTOR = 1.3` with good results, but I didn't do a thorough survey of behavior.
Does @ko1 suggestion (https://bugs.ruby-lang.org/issues/9607#note-11) change the situation, and tunin...
06/30/2014
-
10:24 PM Ruby Feature #2542: URI lib should be updated to RFC 3986
- In RFC 3986, square brackets are no longer allowed in the query part.
Source of the unescaped brackets, in this case: https://github.com/brynary/rack-test/blob/master/lib/rack/test/utils.rb
This may become a common issue since plen...
04/28/2014
-
01:13 AM Ruby Feature #9778: Bring shortcut methods to Hash
- `Hash#+` rejected in #6225. Also see #7739 for `Hash#|`.
03/28/2014
-
08:22 PM Ruby Feature #9686: Syntax for symbols used in hashes
- See #4276
04/27/2013
-
08:52 AM Ruby Bug #8335: Performance regression with many threads
- Mike - also fixed @ https://github.com/sstephenson/ruby-build/pull/351
04/10/2013
-
07:07 AM Ruby Bug #8243: ruby-debug-base fails because a function is no longer exported
- Hey Eric -
@ko1 updated it to use the new Ruby 2 debugging API!
See the debugger2 branch: https://github.com/cldwalker/debugger/compare/master...debugger2