stevenharman (Steven Harman)
- Login: stevenharman
- Email: steven@harmanly.com
- Registered on: 04/05/2014
- Last sign in: 02/20/2026
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
04/22/2021
-
05:55 AM Ruby Revision bbee6968 (git): [ruby/uri] Use Regexp#match? to avoid extra allocations
- `#=~` builds `MatchData`, requiring extra allocations as compared to
`#match?`, which returns a boolean w/o having to build the `MatchData`.
https://github.com/ruby/uri/commit/158f58a9cc
08/14/2019
-
02:35 PM Ruby Revision 7da40d74 (git): backtrace and backtrace_locations can be nil (#2358)
- Exception#backtrace and Exception#backtrace_locations can both be nil if
not set. The former can be set via `Exception#set_backtrace`, but the
later is only ever set at runtime via `setup_backtrace`.